The smart wine shopping assistant for Wine.com that saves you 30% or more.
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": "Bunch Wine for Wine.com",
"description": "The smart wine shopping assistant for Wine.com that saves you 30% or more.",
"version": "1.2.0",
"version_name": "1.2.0 beta",
"manifest_version": 2,
"icons": {
"48": "icons/bunch_icon_48_green.png",
"128": "icons/bunch_icon_128_green.png"
},
"permissions": [
"storage",
"tabs"
],
"content_scripts": [
{
"matches": [
"https://*.wine.com/*"
],
"js": [
"content.js"
],
"css": [
"inject.css"
]
}
],
"browser_action": {
"default_title": "Bunch - Shop the entire store in seconds.",
"default_popup": "popup/popup_about.html"
},
"background": {
"scripts": [
"background.js"
]
},
"web_accessible_resources": [
"popup/popup_about.html",
"popup/popup_about.js",
"popup/popup.html",
"inject.css",
"icons/back-icon.svg",
"icons/trigger_icon.png",
"icons/loader_white.svg"
]
}