YouTube Dislike Return

YouTube Dislike Return

Bring back the dislike of youtube videos for Google Chrome™!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Dislike Return",
  "description": "Bring back the dislike of youtube videos for Google Chrome™!",
  "version": "1.0.3",
  "manifest_version": 3,
  "background": {
    "service_worker": "ryd.background.js"
  },
  "icons": {
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "host_permissions": [
    "*://*.youtube.com/*"
  ],
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://youtube.com/*",
        "*://www.youtube.com/*",
        "*://m.youtube.com/*"
      ],
      "exclude_matches": [
        "*://*.music.youtube.com/*"
      ],
      "js": [
        "bundled-content-script.js"
      ],
      "css": [
        "content-style.css"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.youtube.com/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "ryd.script.js"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ]
    }
  ]
}