YTME - Youtube Theater Mode Expander

YTME - Youtube Theater Mode Expander

유튜브 영화관모드 확장 - Youtube screen expander on theater mode

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "YTME - Youtube Theater Mode Expander",
  "version": "0.40.04",
  "description": "유튜브 영화관모드 확장 - Youtube screen expander on theater mode",
  "options_page": "/options.html",
  "background": {
    "service_worker": "/background.js"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+A",
        "mac": "Alt+A"
      },
      "description": "Run YTME"
    }
  },
  "action": {
    "default_icon": {
      "16": "icon.png",
      "32": "icon.png",
      "48": "icon.png",
      "128": "icon.png"
    }
  },
  "icons": {
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "/content.js"
      ],
      "css": [
        "/content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icon.png"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ]
}