Automatically uncovers promo codes as you shop online.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"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"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}