Dislike button on Youtube

Dislike button on Youtube

How to return the dislike button on YouTube? Use the extension.

Merlin
Additional files are visible only to premium users

manifest.json


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