SkipAds for Youtube

SkipAds for Youtube

Automatically skip ads on youtube videos!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_application_title__",
  "description": "__MSG_application_description__",
  "version": "2.7.2",
  "icons": {
    "32": "resources/advertise_32.png",
    "64": "resources/advertise_64.png",
    "128": "resources/advertise_128.png",
    "256": "resources/advertise_256.png",
    "512": "resources/advertise_512.png"
  },
  "background": {
    "service_worker": "script/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "content/content_yt_main.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content/content.js"
      ],
      "run_at": "document_end",
      "match_about_blank": true
    }
  ],
  "permissions": [
    "storage",
    "webRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}