Minty: A fresh way to shop

Minty: A fresh way to shop

I save you money by finding working coupons while you shop, and lots more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "3.2.3",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/16-favfade.png",
    "default_popup": "ui/dashboard/index.html"
  },
  "permissions": [
    "tabs",
    "webRequest",
    "storage",
    "alarms",
    "<all_urls>",
    "https://*.minty.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "thirdparty/jquery-3.5.1.min.js",
        "inject_bar.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "widgets_injected.html",
    "images/16-favfade.png",
    "ui/dashboard/profile-dashboard.html"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}