Wishlist Total

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

Wishlist Total là gì?

Wishlist Total là một tiện ích mở rộng Chrome được phát triển bởi crimsonfae, và tính năng chính của nó là "amazon wishlist total chrome extension, totals all items in wishlist and displays the total".

Tải xuống tệp CRX của tiện ích mở rộng Wishlist Total

Tải xuống các tệp mở rộng Wishlist Total dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Wishlist Total Wishlist Total
ID efcojkbaeocjjmdhbdcdkadnccmjbgog
URL Chính Thức https://chrome.google.com/webstore/detail/wishlist-total/efcojkbaeocjjmdhbdcdkadnccmjbgog
Mô tả amazon wishlist total chrome extension, totals all items in wishlist and displays the total
Kích Thước Tệp 82.81 KB
Số Lần Cài Đặt 98
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2014-02-05
Ngày Phát Hành 2014-02-05
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển crimsonfae
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/howaboutudance/wishlist-total
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}