TubeCount

TubeCount

Know how much you love a video by tracking your view count

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TubeCount",
  "version": "1.0.2",
  "manifest_version": 3,
  "description": "Know how much you love a video by tracking your view count",
  "icons": {
    "16": "./icons/16.png",
    "48": "./icons/48.png",
    "128": "./icons/128.png"
  },
  "action": {
    "default_icon": {
      "16": "./icons/16.png",
      "48": "./icons/48.png",
      "128": "./icons/128.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "./js/content.js"
      ],
      "matches": [
        "https://*.youtube.com/*"
      ],
      "css": [
        "./content.css"
      ]
    }
  ],
  "background": {
    "service_worker": "bg-wrapper.js"
  },
  "permissions": [
    "storage",
    "webNavigation"
  ],
  "host_permissions": [
    "http://www.youtube.com/*",
    "https://www.youtube.com/*"
  ]
}