Cdiscount Express

Cdiscount Express

This extension only open the new website by right clicking the extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Cdiscount Express",
  "description": "This extension only open the new website by right clicking the extension",
  "version": "3.9",
  "manifest_version": 2,
  "browser_action": {
    "default_title": "Open Website"
  },
  "icons": {
    "64": "icon.png"
  },
  "background": {
    "scripts": [
      "jquery.js",
      "bg.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://order.cdiscount.com/*",
        "https://payment.cdiscount.com/*"
      ],
      "js": [
        "jquery.js",
        "switcher.js"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "tabs",
    "notifications",
    "<all_urls>",
    "storage"
  ]
}