Youtube Video Skip Ad Trigger

Youtube Video Skip Ad Trigger

A plugin for automatically pressing 'Skip Ads' button on youtube videos.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDesc__",
  "version": "2.4.5",
  "author": "010 Pixel",
  "permissions": [
    "scripting",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "*://*.youtube.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://payment.010pixel.com/*"
    ]
  },
  "action": {
    "default_icon": {
      "16": "images/icon16.png"
    },
    "default_popup": "subscriptions/index.html",
    "default_title": "__MSG_appBrowserActionDefaultTitle__"
  },
  "icons": {
    "16": "images/icon16.png",
    "24": "images/icon24.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "64": "images/icon64.png",
    "96": "images/icon96.png",
    "128": "images/icon128.png"
  },
  "options_ui": {
    "page": "subscriptions/index.html",
    "open_in_tab": false
  },
  "background": {
    "service_worker": "js/background-loader.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "js/myapp.js"
      ],
      "run_at": "document_end"
    }
  ]
}