22

On the Google Chrome permissions page, it says that you can change Fullscreen permissions.

However, when clicking the permissions, I can only change to allow on this page or ask:

enter image description here

I want to be able to always allow on any site, like some other permissions have:

Is this possible? I also want to get rid of this:

enter image description here

Jon
  • 9,479
  • 40
  • 99
  • 131

2 Answers2

16

EDIT: I found out the reason Chrome prompts is because this is a security issue where sites could possibly impersonate a browser environment.

I got it to work on my machine by using Google's host pattern matching.

  1. Open Chrome's Content extensions paste this into an address bar: chrome://settings/contentExceptions#fullscreen
  2. Edit an item to be *://*/* and save (on my machine it disappeared from the list but worked the way I wanted.) (per @Jaex comment below try just * I used both, but I tried the * first and assumed it didn't work when it disappeared from my list.)

Thats it, it worked immediately for me.

7

If you are on windows just edit your Chrome shortcut properties:

Where it says target:

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"

add --kiosk to the end

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --kiosk

It will now run in full screen mode each time you start it.

easwee
  • 360
  • 3
  • 14