Unsubscriby for Youtube

Unsubscriby for Youtube

The easiest and most complete way to unsubscribe all your Youtube Channels

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Unsubscriby for Youtube",
  "description": "The easiest and most complete way to unsubscribe all your Youtube Channels",
  "version": "0.0.3.6",
  "content_scripts": [
    {
      "matches": [
        "https://extensionpay.com/*"
      ],
      "js": [
        "ExtPay.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://www.youtube.com/feed/channels"
      ],
      "js": [
        "ExtPay.js",
        "common.js",
        "content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "./popup.html",
    "default_title": "Unsubscriby for Youtube"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "notifications"
  ],
  "icons": {
    "32": "/images/32x32.png",
    "128": "/images/128x128.png"
  }
}