Moolah - Automatic Coupon Hunter

Automatically find coupon codes and apply the best one to your cart!
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "browser_action": {
    "default_popup": "./popup.html",
    "default_title": "Automatically find coupon codes and apply the best one to your cart!"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "./contentScripts.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "css": [
        "assets/css/google-ser.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "injectScripts.js",
    "assets/*",
    "css/*",
    "fonts/*"
  ],
  "icons": {
    "16": "assets/logo-16x16.png",
    "32": "assets/logo-32x32.png",
    "64": "assets/logo-48x48.png",
    "128": "assets/logo-128x128.png"
  },
  "manifest_version": 2,
  "options_ui": {
    "chrome_style": false,
    "page": "./options.html"
  },
  "permissions": [
    "tabs",
    "webRequest",
    "storage",
    "webRequestBlocking",
    "unlimitedStorage",
    "http://*/*",
    "https://*/*"
  ],
  "version": "1.3.19",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "background": {
    "scripts": [
      "./background.js"
    ]
  },
  "description": "__MSG_deft_desc__",
  "name": "__MSG_ext_name__",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}