Active Junky: Cash Back Browser Extension

Active Junky: Cash Back Browser Extension

Active Junky: Cash Back Browser Extension allows users of Activejunky.com to be notified when they are browsing on a retailer site that Active Junky provides cashback for and quickly activate this cashback from the extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Active Junky: Cash Back Browser Extension",
  "short_name": "Active Junky",
  "version": "1.0.8.0",
  "description": "Highest cash back rates for outdoor sports enthusiasts, health and fitness buffs, and athletes at thousands of stores and brands.",
  "homepage_url": "https://www.activejunky.com",
  "author": "Active Junky",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "webRequest",
    "storage",
    "<all_urls>",
    "cookies"
  ],
  "background": {
    "scripts": [
      "vendors/bundle.js",
      "bg/bundle.js"
    ],
    "persistent": true
  },
  "options_ui": {
    "page": "settings.html",
    "open_in_tab": 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-32.png",
    "default_title": "Active Junky: Cash Back Browser Extension"
  },
  "icons": {
    "16": "icon-32.png",
    "18": "icon-32.png",
    "32": "icon-32.png",
    "128": "icon-128.png"
  },
  "web_accessible_resources": [
    "content/*.css",
    "content/*.svg",
    "icon-32.png"
  ]
}