Amazon Wishlist Subtotal

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

¿Qué es Amazon Wishlist Subtotal?

Amazon Wishlist Subtotal es una extensión de Chrome desarrollada por HYUTS, y su función principal es "Automatically totals your Amazon wishlists. Save time and frustration by letting this extension do the work for you.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Amazon Wishlist Subtotal

Descarga archivos de extensión Amazon Wishlist Subtotal en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Amazon Wishlist Subtotal Amazon Wishlist Subtotal
ID ikdiffamkfcbglfejmhioopagbponbmb
URL Oficial https://chromewebstore.google.com/detail/amazon-wishlist-subtotal/ikdiffamkfcbglfejmhioopagbponbmb
Descripción Automatically totals your Amazon wishlists. Save time and frustration by letting this extension do the work for you.
Tamaño del Archivo 160 KB
Cantidad de Instalaciones 440
Versión Actual 1.04
Última Actualización 2022-07-22
Fecha de Publicación 2018-08-18
Calificación 4.29/5 Total de 7 Calificaciones
Desarrollador HYUTS
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.hyuts-programmer.com
Idiomas Soportados 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"
        }
    ]
}