SuperSaverMama - Automatic Coupon at Checkout

SuperSaverMama - Automatic Coupon at Checkout

SuperSaverMama automatically finds coupons, applies best coupon code at checkout.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SuperSaverMama - Automatic Coupon at Checkout",
  "description": "SuperSaverMama automatically finds coupons, applies best coupon code at checkout.",
  "short_name": "SSM",
  "icons": {
    "16": "./assets/icons/icon-16.png",
    "48": "./assets/icons/icon-48.png",
    "128": "./assets/icons/icon-128.png"
  },
  "version": "0.0.0.11",
  "browser_action": {
    "default_icon": {
      "16": "./assets/icons/default16.png",
      "19": "./assets/icons/default19.png",
      "32": "./assets/icons/default32.png",
      "38": "./assets/icons/default38.png"
    },
    "default_title": "SuperSaverMama",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "jquery.min.js",
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "./Untitled-3.png"
  ],
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "script_injection.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "*://*/*",
    "identity",
    "identity.email",
    "*://www.googleapis.com/*",
    "*://accounts.google.com/*"
  ],
  "oauth2": {
    "client_id": "183563286230-l7e2l524rq6c2v99hp2v9r5h2vem7htc.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/contacts.readonly",
      "https://www.googleapis.com/auth/userinfo.profile",
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  }
}