Skip Over Ads

Skip Over Ads

Skip Over Ads is an extension that skips or blocks video ads. Automatically skip a commercial while playing videos & many more…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "background.js"
  },
  "description": "",
  "manifest_version": 3,
  "name": "Skip Over Ads",
  "default_locale": "en",
  "version": "1.0.0.45",
  "permissions": [
    "storage",
    "alarms"
  ],
  "icons": {
    "128": "img/128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content/skipads.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "content/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ]
}