Coupolog

Coupolog

Meanwhile you're browsing, it will instantly suggest, find, and automatically show you coupon codes before checking out.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Coupolog",
  "description": "Meanwhile you're browsing, it will instantly suggest, find, and automatically show you coupon codes before checking out.",
  "version": "1.0.2",
  "icons": {
    "16": "images/logo16.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "permissions": [
    "tabs",
    "<all_urls>",
    "unlimitedStorage"
  ],
  "background": {
    "scripts": [
      "js/jquery-1.9.1.min.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery-1.9.1.min.js",
        "js/contentscript.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "browser_action": {
    "default_icon": {
      "19": "images/logo19.png",
      "38": "images/logo38.png"
    },
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "styles/external.css",
    "images/*"
  ]
}