Video Percentage Indicator

Video Percentage Indicator

This extension display the video progress percentage on OTT Platforms like Netflix, Amazon Prime Video, and Youtube etc

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Video Percentage Indicator",
  "version": "0.6",
  "description": "This extension display the video progress percentage on OTT Platforms like Netflix, Amazon Prime Video, and Youtube etc",
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "js/v2.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "img/logo.png",
    "48": "img/logo.png",
    "128": "img/logo.png"
  }
}