Rewomo - Automatic Coupons at Checkout

Rewomo - Automatic Coupons at Checkout

Rewomo automatically applies the best coupon codes at checkout!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "version": "1.3.0",
  "description": "__MSG_description__",
  "icons": {
    "16": "images/icons/icon16.png",
    "48": "images/icons/icon48.png",
    "128": "images/icons/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js",
        "feature.js"
      ],
      "run_at": "document_idle"
    },
    {
      "all_frames": false,
      "matches": [
        "https://*.rewomo.com/*"
      ],
      "js": [
        "support.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "cookies",
    "storage",
    "webRequest",
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_icon": "images/[email protected]",
    "default_title": "__MSG_name__"
  },
  "manifest_version": 2,
  "default_locale": "en",
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google.com/recaptcha/api.js https://www.gstatic.com/recaptcha/ https://ssl.google-analytics.com; object-src 'self'",
  "web_accessible_resources": [
    "pages/*",
    "images/*",
    "fonts/*",
    "css/*"
  ]
}