Mino - Automatic Coupons

Mino - Automatic Coupons

Mino automatically applies the best coupon codes at checkout!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_name__",
  "version": "4.20.0",
  "description": "__MSG_description__",
  "icons": {
    "16": "images/icons/icon16.png",
    "48": "images/icons/icon48.png",
    "128": "images/icons/icon128.png"
  },
  "manifest_version": 2,
  "background": {
    "scripts": [
      "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": [
        "https://store.facebook.com/*"
      ],
      "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",
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_icon": "images/[email protected]",
    "default_title": "__MSG_name__"
  },
  "default_locale": "en_US",
  "content_security_policy": "script-src 'self'; object-src 'self';",
  "web_accessible_resources": [
    "pages/*",
    "images/*",
    "fonts/*",
    "css/*",
    "scripts/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}