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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" } ] } |