Impakt

Impakt

The ethical shopping browser companion

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Impakt",
  "version": "0.1",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.amazon.com/s*"
      ],
      "js": [
        "contentScript.js",
        "impakt.js"
      ],
      "css": [
        "impakt.css"
      ]
    }
  ],
  "description": "The ethical shopping browser companion",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "https://impakt.app/",
    "storage",
    "tabs",
    "webNavigation"
  ],
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "web_accessible_resources": [
    "images/*.png"
  ],
  "manifest_version": 2
}