Inspect and view changes in The Coupons App® 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "The Coupons App®",
"version": "1.4",
"description": "Automatic shopping promo code savings with 1-click",
"manifest_version": 2,
"permissions": [
"storage",
"http://*/*",
"https://*/"
],
"icons": {
"16": "images/icon_16.png",
"32": "images/icon_32.png",
"48": "images/icon_48.png",
"128": "images/icon_128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"main.js"
]
}
],
"browser_action": {
"default_icon": {
"16": "images/icon_16.png",
"32": "images/icon_32.png",
"48": "images/icon_48.png",
"128": "images/icon_128.png"
}
},
"web_accessible_resources": [
"*.js",
"*.html",
"js/*.js",
"css/*.css",
"css/*.svg",
"*.svg",
"anim/*.json",
"anim/*.gif"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}