Domino's Vouchers UK

Domino's Vouchers UK

This extension gets the latest voucher codes for dominos in the UK

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "name": "Domino's Vouchers UK",
  "description": "This extension gets the latest voucher codes for dominos in the UK",
  "version": "1.2",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "cookies",
    "activeTab",
    "https://www.vouchercodes.co.uk/*",
    "https://www.hotukdeals.com/*",
    "https://www.latestdeals.co.uk/*",
    "https://www.vouchercloud.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.dominos.co.uk/*",
        "http://www.dominos.co.uk/*"
      ],
      "js": [
        "jquery-3.4.1.min.js",
        "content.js"
      ]
    }
  ]
}