Vous voulez savoir quelles boutiques vous offrent du cashback sur internet ? La barre d'alerte Shopbuddies est là pour ça !
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": "__MSG_app_name__",
"version": "4.0.1",
"description": "__MSG_app_desc__",
"default_locale": "fr",
"background": {
"scripts": [
"libs/js/jquery.min.js",
"libs/js/lz-string.js",
"libs/js/character-encoding.js",
"background.js"
]
},
"permissions": [
"tabs",
"cookies",
"storage",
"<all_urls>",
"unlimitedStorage"
],
"externally_connectable": {
"matches": [
"*://*.orangebuddies.com/*"
]
},
"browser_action": {
"default_icon": {
"19": "images/icon19.png",
"38": "images/icon38.png"
},
"default_title": "__MSG_app_name__"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"libs/js/jquery.min.js",
"libs/js/character-encoding.js",
"contentscript.js"
],
"run_at": "document_idle",
"all_frames": false
}
],
"web_accessible_resources": [
"libs/css/popup.css",
"images/*"
],
"icons": {
"48": "logo.png",
"128": "logo.png"
},
"manifest_version": 2
}