Autoskip Youtube Ads

Autoskip Youtube Ads

Allows you to autoskip any youtube ad once it is possible

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Autoskip Youtube Ads",
  "description": "Allows you to autoskip any youtube ad once it is possible",
  "icons": {
    "16": "icons8-check-all-stickers-16.png",
    "32": "icons8-check-all-stickers-32.png",
    "128": "icons8-check-all-128.png"
  },
  "version": "3.0",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "action": {
    "default_title": "Auto Skip Youtube Ads",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/watch?*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}