A shopping bag for every website!
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",
"manifest_version": 2,
"name": "Shopping-Bag",
"description": "A shopping bag for every website!",
"version": "1.0.0",
"default_locale": "en",
"author": "Klaas Minten",
"options_page": "options.html",
"short_name": "Shopping-Bag",
"icons": {
"16": "Pictures/Icons/icon16.png",
"48": "Pictures/Icons/icon48.png",
"128": "Pictures/Icons/icon128.png"
},
"browser_action": {
"default_icon": "Pictures/Icons/icon16.png",
"default_title": "Open shopping bag"
},
"background": {
"scripts": [
"Scripts/background.js"
]
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"css": [
"Scripts/clean.css",
"Scripts/button.css"
],
"js": [
"Scripts/button.js"
]
}
],
"web_accessible_resources": [
"Pictures/Icons/*.png",
"Pictures/drag-image.png",
"Pictures/no-image.png",
"Pictures/Enter.gif",
"Pictures/Backspace.gif",
"Pictures/arrow.png"
],
"sandbox": {
"pages": [
"app.html"
]
},
"permissions": [
"activeTab",
"storage",
"tabs",
"http://*/*",
"https://*/*"
]
}