Peoples Choice Extender

Peoples Choice Extender

Peoples Choice Extender is a pioneering browser extension designed to enrich the YouTube viewing experience. It seamlessly…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Peoples Choice Extender",
  "version": "1.1.1",
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/watch*"
      ],
      "js": [
        "pages/youtube.js"
      ],
      "css": [
        "styles/buttonStyles.css"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "img/16.png",
      "48": "img/48.png",
      "64": "img/64.png",
      "128": "img/128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "lib/inject_toastability.js",
        "lib/inject_contractabi_contractmapping.js",
        "lib/inject_metamaskInteraction.js",
        "lib/inject_contentPageInteractions.js",
        "styles/buttonStyles.css",
        "lib/ethers.min-6.8.1.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}