Amazon Wishlist Subtotal
Automatically totals your Amazon wishlists. Save time and frustration by letting this extension do the work for you.
Was ist Amazon Wishlist Subtotal?
Amazon Wishlist Subtotal ist eine Chrome-Erweiterung, die von HYUTS entwickelt wurde, und ihr Hauptmerkmal ist "Automatically totals your Amazon wishlists. Save time and frustration by letting this extension do the work for you.".
Erweiterungsscreenshots
Amazon Wishlist Subtotal-Erweiterungs-CRX-Datei herunterladen
Laden Sie Amazon Wishlist Subtotal-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension will help you save time shopping on Amazon when using wishlists. It automatically calculates the items in wishlists so you don't have to. Feel free to contact me if you have an issues. Also would love to hear my users recommendations on what they would like to see added! v1.3 Now works in grid view as well as list Now calculates larger lists (must scroll down to load them) 🖱⬇ v1.04 Fixed issue where colors would not load properly Fixed issue where content would not line up as expected Bugs: Currently need to fix loading custom colors. Extension functionality still works.
Grundlegende Informationen zur Erweiterung
Name | Amazon Wishlist Subtotal |
ID | ikdiffamkfcbglfejmhioopagbponbmb |
Offizielle URL | https://chromewebstore.google.com/detail/amazon-wishlist-subtotal/ikdiffamkfcbglfejmhioopagbponbmb |
Beschreibung | Automatically totals your Amazon wishlists. Save time and frustration by letting this extension do the work for you. |
Dateigröße | 160 KB |
Installationsanzahl | 440 |
Aktuelle Version | 1.04 |
Letztes Update | 2022-07-22 |
Veröffentlichungsdatum | 2018-08-18 |
Bewertung | 4.29/5 Insgesamt 7 Bewertungen |
Entwickler | HYUTS |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.hyuts-programmer.com |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "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" } ] } |