iConsumer Button

iConsumer Button

A small button for your browser that tells stores you are an iConsumer member and are entitled to earn rebates when you make purchases. It's automatic and free! The stores pay for it because they want you to shop at them.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "iConsumer Button",
  "version": "2.0.10",
  "description": "iConsumer Button",
  "homepage_url": "https://www.iconsumer.com",
  "manifest_version": 2,
  "author": "iConsumer.com Holdings LLC",
  "permissions": [
    "tabs",
    "webRequest",
    "storage",
    "<all_urls>",
    "cookies"
  ],
  "background": {
    "scripts": [
      "vendors/bundle.js",
      "bg/bundle.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "vendors/bundle.js",
        "content/bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "icon-24.png",
    "default_title": "iConsumer Button",
    "default_popup": "popup.html"
  },
  "icons": {
    "24": "icon-24.png",
    "64": "icon-64.png",
    "128": "icon-128.png"
  },
  "web_accessible_resources": [
    "content/*.css",
    "content/*.svg",
    "icon-24.png"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "iConsumerButton@iConsumerCorp"
    }
  }
}