Ratings Preview for Youtube™

Ratings 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


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_application_title__",
  "description": "__MSG_application_description__",
  "version": "3.0.1",
  "container": [
    "GOOGLE_DRIVE"
  ],
  "default_locale": "en",
  "offline_enabled": true,
  "icons": {
    "96": "/img/icon-96.png",
    "128": "/img/icon-128.png"
  },
  "action": {
    "default_icon": "/img/icon-128.png",
    "default_title": "__MSG_application_title__",
    "default_popup": "/ui/popup.html"
  },
  "background": {
    "service_worker": "/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "css": [
        "/css/content-style.css"
      ],
      "js": [
        "/libraries/jquery-3.3.1.min.js",
        "/js/content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "*://*.youtube.com/*",
    "*://*.returnyoutubedislikeapi.com/*"
  ],
  "homepage_url": "https://ratings-preview.freeonlineapps.net/"
}