YouTube Dislike Extension

YouTube Dislike Extension

The ultimate way to dislike a YouTube video like how we used to

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Dislike Extension",
  "description": "The ultimate way to dislike a YouTube video like how we used to",
  "version": "1.2.2.2",
  "manifest_version": 3,
  "icons": {
    "16": "/logo.png",
    "48": "/logo.png",
    "128": "/logo.png"
  },
  "action": {
    "default_icon": {
      "16": "/logo.png",
      "32": "/logo.png",
      "48": "/logo.png",
      "128": "/logo.png"
    },
    "icons": {
      "16": "/logo.png",
      "32": "/logo.png",
      "48": "/logo.png",
      "128": "/logo.png"
    },
    "default_popup": "/public/index.html"
  },
  "permissions": [
    "tabs",
    "identity",
    "identity.email"
  ],
  "background": {
    "service_worker": "src/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "/src/js/ping.js"
      ],
      "run_at": "document_start"
    }
  ]
}