Amazon Wishlist Subtotal

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

Co to jest Amazon Wishlist Subtotal?

Amazon Wishlist Subtotal to rozszerzenie Chrome opracowane przez HYUTS, a jego główną funkcją jest „Automatically totals your Amazon wishlists. Save time and frustration by letting this extension do the work for you.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Amazon Wishlist Subtotal

Pobierz pliki rozszerzeń Amazon Wishlist Subtotal w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Amazon Wishlist Subtotal Amazon Wishlist Subtotal
ID ikdiffamkfcbglfejmhioopagbponbmb
Oficjalny URL https://chromewebstore.google.com/detail/amazon-wishlist-subtotal/ikdiffamkfcbglfejmhioopagbponbmb
Opis Automatically totals your Amazon wishlists. Save time and frustration by letting this extension do the work for you.
Rozmiar pliku 160 KB
Liczba instalacji 440
Aktualna Wersja 1.04
Ostatnia Aktualizacja 2022-07-22
Data Publikacji 2018-08-18
Ocena 4.29/5 Łącznie 7 Oceny
Deweloper HYUTS
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.hyuts-programmer.com
Obsługiwane Języki 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"
        }
    ]
}