Amazon WishList Sum
It shows you a total sum of items in your wishlist on amazon.co.jp. (You have to reload a web page if you want to use this again.)
Amazon WishList Sum란 무엇입니까?
Amazon WishList Sum은(는) TKS에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "It shows you a total sum of items in your wishlist on amazon.co.jp. (You have to reload a web page if you want to use this again.)"입니다.
확장 프로그램 스크린샷
Amazon WishList Sum 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
You can see the total price in your wishlist without putting them into the cart. Amazonで商品をカートに入れレジに行く前に、合計金額を知りたい時はありませんか? ほしい物リストに入っている商品の合計金額を表示することができます! (You have to reload a web page if you want to use this again.) (同じページで再度使うときはページを一度リロードしてください。) Here is the code: https://github.com/mugi0096/wishlistSum
확장 프로그램 기본 정보
이름 | |
ID | ajbgdhggiminjddnpjdcgoconpjgkkfi |
공식 URL | https://chromewebstore.google.com/detail/amazon-wishlist-sum/ajbgdhggiminjddnpjdcgoconpjgkkfi |
설명 | It shows you a total sum of items in your wishlist on amazon.co.jp. (You have to reload a web page if you want to use this again.) |
파일 크기 | 4.97 KB |
설치 횟수 | 341 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2021-12-03 |
출시 날짜 | 2021-12-02 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | TKS |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Amazon WishList Sum", "version": "1.0.0", "manifest_version": 3, "description": "It shows you a total sum of items in your wishlist on amazon.co.jp. (You have to reload a web page if you want to use this again.)", "action": { "default_icon": "icon16.png", "default_title": "\u5408\u8a08\u91d1\u984d" }, "icons": { "16": "icon16.png" }, "background": { "service_worker": "background.js" }, "permissions": [ "activeTab", "scripting" ], "host_permissions": [ "https:\/\/www.amazon.co.jp\/*\/wishlist\/*" ] } |