Inspect and view changes in CouponFeature Coupon Finder source codes across current and past versions
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": 2,
"name": "CouponFeature Coupon Finder",
"version": "0.0.1",
"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": {
"scripts": [
"js/background.js"
]
},
"browser_action": {
"default_icon": {
"128": "img/icon128.png",
"129": "img/g-icon128.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"js/content.js"
]
}
],
"web_accessible_resources": [
"img/*"
],
"permissions": [
"tabs",
"cookies",
"activeTab",
"*://*/*"
],
"browser_specific_settings": {
"gecko": {
"id": "{cd8f4454-6ccc-452e-9af1-c9e0592b7b3f}"
}
}
}