Amazon Wishlist Subtotal

Automatically totals your Amazon wishlists. Save time and frustration by letting this extension do the work for you.

Cos'è Amazon Wishlist Subtotal?

Amazon Wishlist Subtotal è un'estensione di Chrome sviluppata da HYUTS, e la sua funzione principale è "Automatically totals your Amazon wishlists. Save time and frustration by letting this extension do the work for you.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Amazon Wishlist Subtotal

Scarica i file di estensione Amazon Wishlist Subtotal in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Amazon Wishlist Subtotal Amazon Wishlist Subtotal
ID ikdiffamkfcbglfejmhioopagbponbmb
URL Ufficiale https://chromewebstore.google.com/detail/amazon-wishlist-subtotal/ikdiffamkfcbglfejmhioopagbponbmb
Descrizione Automatically totals your Amazon wishlists. Save time and frustration by letting this extension do the work for you.
Dimensione del File 160 KB
Conteggio Installazioni 440
Versione Corrente 1.04
Ultimo Aggiornamento 2022-07-22
Data di Pubblicazione 2018-08-18
Valutazione 4.29/5 Totale 7 Valutazioni
Sviluppatore HYUTS
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.hyuts-programmer.com
Lingue Supportate 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"
        }
    ]
}