YouTube™ Dislike Counter

YouTube™ Dislike Counter

YouTube™ Dislike Counter brings back the functionality to view dislikes on the YouTube™ platform.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube™ Dislike Counter",
  "description": "YouTube™ Dislike Counter brings back the functionality to view dislikes on the YouTube™ platform.",
  "version": "1.4.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "/js/background.js"
  },
  "icons": {
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage",
    "gcm",
    "notifications"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://youtube.com/*",
        "*://www.youtube.com/*",
        "*://m.youtube.com/*"
      ],
      "exclude_matches": [
        "*://*.music.youtube.com/*"
      ],
      "js": [
        "/js/content_script.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.youtube.com/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "ryd.script.js"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ]
    }
  ],
  "options_ui": {
    "page": "popup.html",
    "open_in_tab": false
  }
}