Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Amazon Wishlist Subtotal",
"description": "Automatically totals your Amazon wishlists. Save time and frustration by letting this extension do the work for you.",
"version": "1.04",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"activeTab",
"scripting"
],
"action": {
"default_popup": "\/html\/popup.html",
"default_icon": {
"128": "\/images\/icon.png"
}
},
"icons": {
"128": "\/images\/icon.png"
},
"options_page": "html\/options.html",
"content_scripts": [
{
"js": [
"content-script.js",
"js\/storage.js",
"js\/parse_price.js"
],
"matches": [
"https:\/\/*.amazon.com\/*wishlist*"
],
"run_at": "document_start"
}
]
}