Return Youtube Dislike Count

Return Youtube Dislike Count

Returns the ability to see dislikes on the YouTube service

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "css": [
        "content.css"
      ],
      "exclude_matches": [
        "*://*.music.youtube.com/*"
      ],
      "js": [
        "content.js"
      ],
      "matches": [
        "*://youtube.com/*",
        "*://www.youtube.com/*",
        "*://m.youtube.com/*"
      ]
    }
  ],
  "default_locale": "en",
  "externally_connectable": {
    "matches": [
      "*://*.youtube.com/*"
    ]
  },
  "host_permissions": [
    "*://*/*"
  ],
  "icons": {
    "48": "icons/diz48.png",
    "128": "icons/diz128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "permissions": [
    "storage"
  ],
  "version": "1.0.7",
  "web_accessible_resources": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "resources": [
        "ryd.script.js"
      ]
    }
  ]
}