Inspect and view changes in ZOffers - Get paid for shopping. 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": "ZOffers - Get paid for shopping.",
"description": "Guaranteed cashback on your shopping cart. The more items in your bag, the more you'll be paid.",
"homepage_url": "https://www.zoffers.in",
"version": "1.0.4",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"static/js/content.js"
],
"run_at": "document_start"
}
],
"background": {
"scripts": [
"static/js/background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html",
"default_title": "ZOffers"
},
"icons": {
"16": "static/images/icon16.png",
"48": "static/images/icon48.png",
"128": "static/images/icon128.png"
},
"permissions": [
"tabs",
"notifications",
"http://127.0.0.1/",
"https://zoffers.in/"
]
}