CouponFeature automatically finds the best coupons & discount 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "CouponFeature Coupon Finder",
"version": "1.0.5",
"description": "CouponFeature automatically finds the best coupons & discount codes as you shop online.",
"icons": {
"16": "img/icon16.png",
"32": "img/icon32.png",
"48": "img/icon48.png",
"64": "img/icon64.png",
"128": "img/icon128.png"
},
"background": {
"service_worker": "js/background.js"
},
"action": {
"default_icon": {
"128": "img/icon128.png",
"129": "img/g-icon128.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js/content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"img/logo.png",
"img/r-m.png",
"img/l-m.png",
"img/close.png"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"tabs",
"cookies",
"activeTab"
],
"host_permissions": [
"<all_urls>"
]
}