Autobell

Autobell

Automatically enable notifications for the channels you follow on YouTube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Autobell",
  "short_name": "Autobell",
  "version": "0.2.0",
  "description": "Automatically enable notifications for the channels you follow on YouTube.",
  "browser_action": {
    "default_icon": {
      "16": "icons/icon-16.png",
      "32": "icons/icon-32.png",
      "64": "icons/icon-64.png",
      "128": "icons/icon-128.png"
    }
  },
  "permissions": [
    "activeTab",
    "webRequest",
    "*://*.youtube.com/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "main.js"
      ]
    }
  ]
}