SpeedRun - Speed Ads On Videos at 16x

SpeedRun - Speed Ads On Videos at 16x

Blaze through and skip ads at 16x speeds! SpeedRun does this with minimal impact to your video watching experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "0.0.2",
  "name": "SpeedRun - Speed Ads On Videos at 16x",
  "description": "Blaze through and skip ads at 16x speeds! SpeedRun does this with minimal impact to your video watching experience.",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs"
  ],
  "action": {
    "default_icon": {
      "16": "assets/images/icon16.png",
      "48": "assets/images/icon48.png",
      "128": "assets/images/icon128.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://www.youtube.com/",
        "https://*.youtube.com/watch?*"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "assets/images/icon16.png",
    "48": "assets/images/icon48.png",
    "128": "assets/images/icon128.png"
  },
  "author": "[email protected]"
}