Promocodex USA

Promocodex USA

Promocodex United States will search for you the best coupon codes and promotions available while browsing your favorite stores.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Promocodex USA",
  "short_name": "Promocodex USA",
  "version": "1.0.0",
  "description": "Promocodex United States will search for you the best coupon codes and promotions available while browsing your favorite stores.",
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "64": "64.png"
  },
  "browser_action": {
    "browser_style": false,
    "default_icon": {
      "64": "64.png"
    },
    "default_title": "Promo codes and Coupons from USA's leading stores | Promocodex.com",
    "default_popup": "/index.html"
  },
  "permissions": [
    "*://*.promocodex.com/*",
    "activeTab"
  ],
  "content_security_policy": "script-src 'self' https://cdnjs.cloudflare.com; object-src 'self'",
  "background": {
    "scripts": [
      "/assets/js/jquery-3.4.1.min.js",
      "/config.js",
      "/assets/js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "/assets/js/jquery-3.4.1.min.js",
        "/config.js",
        "/assets/js/content-script.js"
      ],
      "run_at": "document_start"
    }
  ]
}