Mojo - Automatic Coupons at Checkout

Mojo - Automatic Coupons at Checkout

Mojo automatically applies the best coupon codes at checkout!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_name__",
  "version": "3.2.0",
  "description": "__MSG_description__",
  "icons": {
    "16": "images/icons/icon16.png",
    "48": "images/icons/icon48.png",
    "128": "images/icons/icon128.png"
  },
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_globs": [
        "*://*facebook.*/*",
        "*://*google.*/*",
        "*://*youtube.*/*",
        "*://*wikipedia.*/*",
        "*://*instagram.*/*",
        "*://*pinterest.*/*",
        "*://*twitter.*/*"
      ],
      "js": [
        "content.js",
        "feature.js"
      ],
      "run_at": "document_idle"
    },
    {
      "all_frames": false,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/support.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "cookies",
    "storage",
    "webRequest",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_icon": "images/[email protected]",
    "default_title": "__MSG_name__"
  },
  "default_locale": "en_US",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "pages/*",
        "images/*",
        "fonts/*",
        "css/*",
        "scripts/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}