Video in Theater Mode Pro

Video in Theater Mode Pro

Before watching the video, enable this extension and click the fullscreen button of video, then the video element will fill in…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "default_locale": "zh_TW",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.2.1",
  "manifest_version": 3,
  "icons": {
    "128": "./icon.png"
  },
  "background": {
    "service_worker": "./js/service-worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./js/utils/jquery-3.7.1.min.js",
        "./js/content-script.js"
      ]
    }
  ],
  "action": {
    "default_title": "__MSG_default_title_on__",
    "default_icon": "./images/TheaderModeOff.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "MacCtrl+Shift+F"
      }
    }
  },
  "options_ui": {
    "page": "./html/options.html",
    "open_in_tab": false
  },
  "permissions": [
    "tabs",
    "tabCapture",
    "offscreen",
    "activeTab"
  ]
}