I'm making a packaged app in Chrome. It needs to be fullscreen. To achieve this I have setup the following permissions in manifest.json (v2):
"permissions": [
"alwaysOnTopWindows",
"fullscreen",
....
]
In my background js file I call the following function:
chrome.app.window.create('html/main.html', {
'state': 'fullscreen',
},windowCreated);
The window is created fullscreen only there is a 1px line on the right of the screen and a 1px line on the bottom of the screen. I tried all kind of things with CSS, i.e. made the background-color of main.html black, but still the white lines remains. It seems it cannot be changed using CSS.
Has anyone encountered this and found a possible solution?
The OS is Win7 64bit, Chrome versions 42.0.2311.90 m