Video ads skipper

Video ads skipper

Save time while browsing the internet and get rid of tiresome ads!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Video ads skipper",
  "short_name": "Video ads skipper",
  "description": "Save time while browsing the internet and get rid of tiresome ads!",
  "manifest_version": 3,
  "version": "2.2.2",
  "background": {
    "service_worker": "source/worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "source/content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "source/content_yt.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "permissions": [
    "storage",
    "webRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "icons": {
    "128": "resource/logo128.png"
  }
}