Rating Preview for Youtube

Rating Preview for Youtube

You can view the number of thumbs up vs thumbs down button that video has before deciding whether to watch the video.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_application_title__",
  "version": "1.0.2",
  "container": [
    "GOOGLE_DRIVE"
  ],
  "default_locale": "en",
  "description": "__MSG_application_description__",
  "icons": {
    "96": "icon-96.png",
    "128": "icon-128.png"
  },
  "browser_action": {
    "default_icon": "icon-128.png",
    "default_title": "Ratings Preview for Youtubeâ„¢",
    "default_popup": "options-popup.html"
  },
  "background": {
    "scripts": [
      "background.js",
      "/js/update-conf.js",
      "/js/update.min.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "css": [
        "content-style.css"
      ],
      "js": [
        "libraries/jquery-3.3.1.min.js",
        "content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "*://*.youtube.com/*",
    "https://www.googleapis.com/*",
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}