Refined Prime Video

Refined Prime Video

Adds small tweaks and useful new features to Amazon Prime Video.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Refined Prime Video",
  "description": "Adds small tweaks and useful new features to Amazon Prime Video.",
  "homepage_url": "https://github.com/shroudedcode/refined-prime-video#readme",
  "icons": {
    "128": "icon.png"
  },
  "action": {
    "default_icon": "icon.png",
    "default_title": "Refined Prime Video",
    "default_popup": "popup.html",
    "browser_style": true
  },
  "version": "24.4.24.1210",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://*.primevideo.com/*",
        "https://*.amazon.com/*",
        "https://*.amazon.co.uk/*",
        "https://*.amazon.de/*",
        "https://*.amazon.co.jp/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "manifest_version": 3,
  "minimum_chrome_version": "88"
}