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是由HYUTS開發的Chrome擴展程式,該擴展的主要功能是“Automatically totals your Amazon wishlists. Save time and frustration by letting this extension do the work for you.”。
擴展截圖
下載Amazon Wishlist Subtotal擴展crx文件
下載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 |
ID | ikdiffamkfcbglfejmhioopagbponbmb |
官方網址 | 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" } ] } |