Vigil for Amazon

Vigil for Amazon

Socially Conscious Consumption for Amazon Shoppers. Make sure the brands you buy have the same ethical standards you do.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Vigil for Amazon",
  "version": "0.3.3",
  "description": "Socially Conscious Consumption for Amazon Shoppers. Make sure the brands you buy have the same ethical standards you do.",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage"
  ],
  "background": {
    "scripts": [
      "src/background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/vigilIcon16.png",
      "32": "images/vigilIcon32.png",
      "48": "images/vigilIcon48.png",
      "128": "images/vigilIcon128.png"
    }
  },
  "icons": {
    "16": "images/vigilIcon16.png",
    "32": "images/vigilIcon32.png",
    "48": "images/vigilIcon48.png",
    "128": "images/vigilIcon128.png"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "*://*.amazon.com/*"
      ],
      "js": [
        "src/contentScript.js"
      ]
    }
  ],
  "manifest_version": 2
}