Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Sale-N-Buy Wishlist",
"version": "1.0",
"description": "A wishlist extension for sale-n-buy.com",
"background": {
"service_worker": "service-worker.js"
},
"action": {
"default_title": "Sale-N-Buy Side Panel"
},
"permissions": [
"sidePanel",
"tabs",
"storage",
"scripting"
],
"host_permissions": [
"https:\/\/sale-n-buy.com\/*\/itemlist"
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+B",
"mac": "Command+B"
}
}
},
"content_scripts": [
{
"matches": [
"http:\/\/sale-n-buy.com\/*\/itemlist",
"https:\/\/sale-n-buy.com\/*\/itemlist"
],
"run_at": "document_end",
"js": [
"content-script.js"
]
}
],
"side_panel": {
"default_path": "sidepanel.html"
},
"icons": {
"128": "icon-128.png"
}
}