Получи 29 ₽ при регистрации!
Браузерное расширение от Cashboxme напомнит вам активировать кэшбэк (Cash back) в одном из более чем 1000 магазинов-партнеров и вернуть до 40% за вашу покупку.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Cashboxme.com",
"version": "1.0.0",
"manifest_version": 2,
"description": "Экономь на покупках!",
"icons": {
"16": "icons/default.png",
"48": "icons/default.png"
},
"applications": {
"gecko": {
"id": "info@cashboxme.com",
"strict_min_version": "42.0"
}
},
"background": {
"scripts": [
"dist/jquery-3.1.1.min.js",
"dist/background.js",
"dist/sanitizer.js"
]
},
"browser_action": {
"default_icon": {
"16": "icons/default.png",
"48": "icons/default.png"
},
"default_title": "Cashboxme.com: Экономь на покупках!",
"default_popup": "index.html"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"dist/jquery-3.1.1.min.js",
"dist/content.js",
"dist/sanitizer.js"
],
"css": [
"dist/content.css"
]
}
],
"content_security_policy": "script-src 'self'; object-src 'self'",
"permissions": [
"webRequest",
"webRequestBlocking",
"webNavigation",
"management",
"notifications",
"activeTab",
"cookies",
"storage",
"<all_urls>",
"tabs"
]
}