Savings add-on

Savings add-on

Enjoy the discounts offered by your club without having to access it. We notify you of discounts while you browse. Easy, right?

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_name__",
  "version": "1.0.21",
  "description": "__MSG_description__",
  "author": "Inspiring Benefits",
  "manifest_version": 2,
  "default_locale": "en",
  "permissions": [
    "tabs",
    "webRequest",
    "storage",
    "<all_urls>",
    "unlimitedStorage"
  ],
  "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"
    }
  ],
  "options_ui": {
    "page": "settings.html",
    "open_in_tab": true
  },
  "browser_action": {
    "default_icon": "icon-32.png",
    "default_title": "Savings add-on",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "128": "icon-128.png"
  },
  "web_accessible_resources": [
    "content/*.css",
    "content/*.svg",
    "icon-32.png"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}