Cashback Alert helps you save money in a quick and convenient way.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "Cashback Alert",
"description": "Cashback Alert helps you save money in a quick and convenient way.",
"version": "0.0.2",
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"action": {
"name": "Never miss a deal again with Cashback Alert",
"default_icon": {
"16": "icons/16.png"
},
"default_popup": "popup/popup.html"
},
"permissions": [
"tabs",
"notifications",
"alarms",
"storage"
],
"content_scripts": [
{
"matches": [
"https://*.cashbackalert.net/*"
],
"run_at": "document_start",
"all_frames": true,
"js": [
"cs.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"icons/*"
],
"matches": [
"https://*.cashbackalert.net/*"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}