YouTube™ Likes and Dislikes

YouTube™ Likes and Dislikes

View the likes and dislikes of YouTube™ videos from their thumbnails.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "YouTube™ Likes and Dislikes",
  "version": "0.1.0",
  "description": "View the likes and dislikes of YouTube™ videos from their thumbnails.",
  "author": "Elliot Waite",
  "icons": {
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon96.png",
    "default_title": "Settings",
    "default_popup": "options.html"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": false
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "lib/jquery-3.6.0.min.js",
        "content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "*://*.youtube.com/*",
    "https://www.googleapis.com/*",
    "storage"
  ],
  "web_accessible_resources": [
    "css/bar-blue-gray.css",
    "css/bar-blue-gray-video-page.css",
    "css/bar-bottom-separator.css",
    "css/bar-bottom-tooltip.css",
    "css/bar-bottom.css",
    "css/bar-green-red.css",
    "css/bar-green-red-video-page.css",
    "css/bar-tooltip.css",
    "css/bar-top-separator.css",
    "css/bar-top-tooltip.css",
    "css/bar-top.css",
    "css/bar.css"
  ]
}