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": "Amazon Wishlist SidePanel",
"version": "1.0",
"description": "Save and Track your Favorite Amazon Products in a Convenient Sidebar for Easy Access and Comparison.",
"minimum_chrome_version": "116",
"background": {
"service_worker": "service-worker.js"
},
"action": {
"default_title": "Click to open panel"
},
"side_panel": {
"default_path": "sidepanel-tab.html"
},
"content_scripts": [
{
"js": [
"content-script.js"
],
"matches": [
"https:\/\/www.amazon.com\/*\/dp\/*",
"https:\/\/www.amazon.com\/dp\/*"
]
},
{
"js": [
"openButton.js"
],
"matches": [
"https:\/\/www.amazon.com\/*"
]
}
],
"permissions": [
"storage",
"tabs",
"sidePanel"
],
"host_permissions": [
"https:\/\/tuningcharts.com\/*"
],
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
}