Wishlist Total

amazon wishlist total chrome extension, totals all items in wishlist and displays the total

什么是Wishlist Total?

Wishlist Total是由crimsonfae开发的Chrome扩展程序,该扩展的主要功能是“amazon wishlist total chrome extension, totals all items in wishlist and displays the total”。

下载Wishlist Total扩展crx文件

下载Wishlist Total扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        amazon wishlist total chrome extension, totals all items in wishlist and displays the total                    

扩展基本信息

名称 Wishlist Total Wishlist Total
ID efcojkbaeocjjmdhbdcdkadnccmjbgog
官方URL https://chrome.google.com/webstore/detail/wishlist-total/efcojkbaeocjjmdhbdcdkadnccmjbgog
简介 amazon wishlist total chrome extension, totals all items in wishlist and displays the total
文件大小 82.81 KB
安装次数 98
当前版本 1.0
更新时间 2014-02-05
上架时间 2014-02-05
评分 3.00/5 共2次评分
开发者 crimsonfae
付费类型 free
扩展官网 https://github.com/howaboutudance/wishlist-total
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Wishlist Total",
    "version": "1.0",
    "author": "Michael Penhallegon",
    "page_action": {
        "default_icon": "static\/wishlist.png",
        "default_popup": "popup.html"
    },
    "background": {
        "script": [
            ".\/js\/background.js"
        ],
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.amazon.com\/gp\/registry*"
            ],
            "js": [
                ".\/lib\/jquery-2.0.3.js",
                ".\/js\/content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/amazon.com\/*",
        "http:\/\/www.amazon.com\/gp\/registry\/*"
    ]
}