ViewTrender's Notifications

ViewTrender's Notifications

Stop missing notifications for your YouTube subscriptions, shorts and live streams.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ViewTrender's Notifications",
  "version": "2.3.2",
  "description": "Stop missing notifications for your YouTube subscriptions, shorts and live streams.",
  "default_locale": "en",
  "action": {
    "default_icon": "./assets/128.png",
    "default_popup": "./dist/popup/index.html"
  },
  "options_ui": {
    "page": "./dist/options/index.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "./dist/background/index.mjs"
  },
  "icons": {
    "16": "./assets/16.png",
    "48": "./assets/48.png",
    "128": "./assets/128.png"
  },
  "permissions": [
    "storage",
    "alarms",
    "identity",
    "identity.email",
    "notifications"
  ],
  "host_permissions": [
    "https://*.youtube.com/*",
    "https://*.notificationsforyoutube.com/*",
    "https://notifications.viewtrender.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/feed/*"
      ],
      "js": [
        "./dist/contentScripts/feed.global.js"
      ],
      "css": [
        "./dist/contentScripts/style.css"
      ]
    },
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "./dist/contentScripts/watch.global.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dist/contentScripts/style.css",
        "dist/contentScripts/subscriptions.global.js",
        "*.html",
        "*.css",
        "*.svg",
        "content/*",
        "images/*",
        "js/*",
        "icons/*"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "externally_connectable": {
    "matches": [
      "*://*.youtube.com/*"
    ]
  }
}