AdWars for YouTube

AdWars for YouTube

A community supported extension skipping YouTube in-video ads segments

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "short_name": "__MSG_extShortName__",
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "version": "1.0.2",
  "browser_action": {
    "default_icon": {
      "19": "icons/icon_19.png",
      "38": "icons/icon_38.png"
    },
    "default_popup": "index.html"
  },
  "icons": {
    "16": "icons/icon_16.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "oauth2": {
    "client_id": "1080367835554-ume0g902p5pp3vrhauo8q8utgttchep5.apps.googleusercontent.com",
    "scopes": [
      "openid",
      "email",
      "profile"
    ]
  },
  "permissions": [
    "activeTab",
    "storage",
    "identity",
    "tabs"
  ],
  "background": {
    "scripts": [
      "browser-polyfill.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "browser-polyfill.js",
        "content.js"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    "icons/icon_19.png",
    "img/tc_stop.svg",
    "img/tc_start.svg",
    "img/aw_enable.svg",
    "img/aw_disable.svg",
    "img/cancel.svg"
  ],
  "content_security_policy": "script-src 'self' 'sha256-f8ehpaiR1lLSGMi8X+XwqxGb5c7t0V2qc1sckZ7N3u8='; object-src 'self'"
}