Nova YouTube™

Nova YouTube™

Ultimate decision for YouTube™

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Nova YouTube™",
  "short_name": "NovaTube",
  "description": "__MSG_app_description__",
  "default_locale": "en",
  "minimum_chrome_version": "80.0",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "74.0"
    }
  },
  "version": "1.49.1",
  "author": "raingart",
  "icons": {
    "16": "/icons/16.png",
    "48": "/icons/48.png",
    "128": "/icons/128.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "page": "/html/background.html",
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*",
        "https://m.youtube.com/*",
        "https://*.youtube-nocookie.com/embed/*",
        "https://youtube.googleapis.com/embed/*"
      ],
      "exclude_matches": [
        "https://*.youtube.com/*.xml*",
        "https://*.youtube.com/error*",
        "https://music.youtube.com/*",
        "https://accounts.youtube.com/*",
        "https://studio.youtube.com/*",
        "https://*.youtube.com/redirect?*",
        "https://*.youtubetranscript.com/*"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "/js/libs/browser-support.js",
        "/js/libs/storage.js",
        "/js/plugins.js",
        "/js/loader.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "/plugins/*"
  ],
  "options_ui": {
    "page": "/html/options.html?tabs=tab-plugins",
    "open_in_tab": true
  },
  "browser_action": {
    "default_popup": "/html/options.html"
  }
}