Dealhack

Dealhack

Automatically uncovers promo codes as you shop online.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dealhack",
  "version": "2.0.14",
  "manifest_version": 3,
  "description": "Automatically uncovers promo codes as you shop online.",
  "homepage_url": "https://dealhack.com/",
  "author": "dealhack.com",
  "icons": {
    "128": "favicon-black.png"
  },
  "permissions": [
    "tabs",
    "webNavigation",
    "storage",
    "unlimitedStorage",
    "alarms"
  ],
  "background": {
    "service_worker": "bg/bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/bundle.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content/*.css",
        "content/*.svg",
        "*.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "action": {
    "default_icon": {
      "20": "favicon-black-DM.png",
      "48": "favicon-black-DM.png"
    },
    "default_title": "Dealhack"
  }
}