MoneyVoters

MoneyVoters

While looking at product pages, MoneyVoters will inform you of the vendor's political affiliation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "MoneyVoters",
  "description": "While looking at product pages, MoneyVoters will inform you of the vendor's political affiliation.",
  "version": "1.0.1",
  "icons": {
    "16": "img/icon.png",
    "32": "img/icon.png",
    "64": "img/icon.png",
    "128": "img/icon.png"
  },
  "options_page": "html/options.html",
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": "img/icon.png",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/jquery.js",
        "js/jquery-ui.js",
        "js/globals.js",
        "js/data.js",
        "js/contentscript.js",
        "js/notification-bar.js"
      ],
      "css": [
        "css/style.css",
        "css/jquery-ui.css",
        "css/bootstrap.css",
        "css/notification-bar.css"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "html/notification-bar.html",
        "audio/notification_sound.mp3",
        "img/settings-icon.png",
        "img/brand.png",
        "img/close.png",
        "https://poshpopassistant.com/moneyvoters/img/close.png",
        "https://poshpopassistant.com/moneyvoters/img/settings-icon.png",
        "https://poshpopassistant.com/moneyvoters/img/brand.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "storage"
  ]
}