YoutubePls

YoutubePls

Too lazy to click the skip button in Youtube? Too much effort clicking away popup ads? No worries, this extension does it for you.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YoutubePls",
  "description": "Too lazy to click the skip button in Youtube? Too much effort clicking away popup ads? No worries, this extension does it for you.",
  "version": "2.2",
  "manifest_version": 3,
  "background": {
    "service_worker": "service-worker.js"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "action": {
    "default_icon": {
      "16": "images/logo-16.png",
      "32": "images/logo-32.png",
      "48": "images/logo-48.png",
      "128": "images/logo-128.png"
    },
    "default_popup": "popup/index.html"
  },
  "icons": {
    "16": "images/logo-16.png",
    "32": "images/logo-32.png",
    "48": "images/logo-48.png",
    "128": "images/logo-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "content/detect-theme.js",
        "content/index.js",
        "content/features/auto-close.js",
        "content/features/auto-im-here.js",
        "content/features/auto-skip.js",
        "content/features/defer-pause.js",
        "content/features/hide-cookie-dialog.js",
        "content/features/mute-ads.js",
        "content/features/play-next.js",
        "content/features/show-pip.js"
      ]
    }
  ]
}