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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        }
    ]
}