Youtube Video Scorer

Youtube Video Scorer

A chrome extension that scores YouTube videos, based on k-means clustering and likes-to-view ratio.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Youtube Video Scorer",
  "description": "A chrome extension that scores YouTube videos, based on k-means clustering and likes-to-view ratio.",
  "version": "0.1",
  "manifest_version": 3,
  "icons": {
    "64": "assets/icon64.png",
    "128": "assets/icon128.png"
  },
  "action": {
    "default_popup": "popup/index.html"
  },
  "host_permissions": [
    "*://*.youtube.com/*"
  ],
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://youtube.com/*",
        "*://www.youtube.com/*",
        "*://m.youtube.com/*"
      ],
      "exclude_matches": [
        "*://*.music.youtube.com/*"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.youtube.com/*"
    ]
  }
}