Find and apply coupons while shopping online
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Coupons4Me",
"version": "1.3",
"description": "Find and apply coupons while shopping online",
"permissions": [
"activeTab",
"scripting",
"storage"
],
"host_permissions": [
"https://*/*",
"http://*/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"content-styles.css"
],
"js": [
"content-script.js"
]
}
],
"action": {
"default_popup": "popup.html"
},
"icons": {
"16": "images/logo-16.png",
"32": "images/logo-32.png",
"48": "images/logo-48.png",
"128": "images/logo-128.png"
},
"minimum_chrome_version": "88"
}