Webvideo FullScreen

Webvideo FullScreen

为网页视频增加网页全屏的功能 简单点击按钮即可为当前网页正在播放的视频赋予网页全屏的功能 开源地址: https://github.com/moonrailgun/webvideo-fullscreen

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Webvideo FullScreen",
  "version": "1.0.0",
  "icons": {
    "128": "icon128.220a281a.png"
  },
  "action": {
    "default_title": "Trans"
  },
  "background": {
    "service_worker": "background.60380520.js",
    "type": "module"
  },
  "permissions": [
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "lib/injected.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}