Autoskip for Youtube™

Autoskip for Youtube™

Autoskip clicks the “Skip” button for you on Youtube™.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extShortDesc__",
  "version": "2.0.1",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "16": "images/icons-16.png",
    "128": "images/icons-128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "19": "images/icons-19.png",
      "38": "images/icons-38.png"
    },
    "default_title": "AutoSkip for Youtube™ ",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "declarativeNetRequest",
    "tabs",
    "notifications",
    "gcm"
  ],
  "host_permissions": [
    "*://*/*"
  ]
}