Amazon Wishlist Subtotal

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

ما هو Amazon Wishlist Subtotal؟

Amazon Wishlist Subtotal هو إضافة Chrome تم تطويرها بواسطة HYUTS، والميزة الرئيسية لها هي "Automatically totals your Amazon wishlists. Save time and frustration by letting this extension do the work for you.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Amazon Wishlist Subtotal

قم بتنزيل ملفات الامتداد Amazon Wishlist Subtotal بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Amazon Wishlist Subtotal Amazon Wishlist Subtotal
ID ikdiffamkfcbglfejmhioopagbponbmb
عنوان URL الرسمي https://chromewebstore.google.com/detail/amazon-wishlist-subtotal/ikdiffamkfcbglfejmhioopagbponbmb
الوصف Automatically totals your Amazon wishlists. Save time and frustration by letting this extension do the work for you.
حجم الملف 160 KB
عدد التثبيتات 440
النسخة الحالية 1.04
آخر تحديث 2022-07-22
تاريخ النشر 2018-08-18
تقييم 4.29/5 مجموع تقييمات 7
المطور HYUTS
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.hyuts-programmer.com
اللغات المدعومة 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"
        }
    ]
}