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文件
下载Amazon WishList Sum扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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\/*" ] } |