Fullscreen

Fullscreen

Use ⌘+⇧+I for toggling fullscreen on any website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Minimalist fullscreen extension.",
  "manifest_version": 2,
  "name": "Fullscreen",
  "version": "0.3.4",
  "permissions": [
    "activeTab"
  ],
  "homepage_url": "https://github.com/MarkTiedemann/fullscreen",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "512": "icon.png"
  },
  "browser_action": {
    "default_title": "Fullscreen this page"
  },
  "commands": {
    "toggle-fullscreen": {
      "suggested_key": {
        "default": "Ctrl+Shift+I",
        "mac": "Command+Shift+I"
      },
      "description": "Toggle fullscreen on this page"
    }
  }
}