Get paid rebates to 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",
"name": "BetterBuy",
"version": "1.1.2",
"description": "Get paid rebates to shop online!",
"background": {
"page": "background.html",
"persistent": true
},
"content_scripts": [
{
"matches": [
"*://*.amazon.com/*"
],
"js": [
"app.js"
],
"css": [
"css/bootstrap.min.css",
"css/font-awesome.min.css",
"css/style.css"
],
"run_at": "document_end"
}
],
"content_security_policy": "script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com; object-src 'self'",
"icons": {
"16": "img/logo-16.png",
"48": "img/logo-48.png",
"128": "img/logo-128.png"
},
"manifest_version": 2,
"permissions": [
"<all_urls>",
"webRequest",
"webRequestBlocking"
],
"web_accessible_resources": [
"fonts/FontAwesome.otf",
"fonts/fontawesome-webfont.eot",
"fonts/fontawesome-webfont.svg",
"fonts/fontawesome-webfont.ttf",
"fonts/fontawesome-webfont.woff",
"fonts/fontawesome-webfont.woff2",
"img/logo.png"
]
}