Hide Youtube Video Button Text (CSS)

Hide Youtube Video Button Text (CSS)

Hides the button text (including number of Likes) on Youtube videos using a CSS rule.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hide Youtube Video Button Text (CSS)",
  "description": "Hides the button text (including number of Likes) on Youtube videos using a CSS rule.",
  "version": "2.0",
  "manifest_version": 3,
  "icons": {
    "16": "./icons/16.png",
    "32": "./icons/32.png",
    "48": "./icons/48.png",
    "128": "./icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "css": [
        "hide_button_labels.css"
      ]
    }
  ]
}