AmazonPriceNinja

Shows when an item in your wishlist has increased in price!

AmazonPriceNinja là gì?

AmazonPriceNinja là một tiện ích mở rộng Chrome được phát triển bởi Matthew, và tính năng chính của nó là "Shows when an item in your wishlist has increased in price!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

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

Tải xuống các tệp mở rộng AmazonPriceNinja 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 Price Ninja only has permission to view your Amazon Wishlist. When you view your Wishlist, APN will scour archives to find the price when you added the items and alert you if the price has increased since then. Amazon notifies you when a price drops but stands quiet when it increases. 

Be aware if you added an item within the past 90 days and the price has increased!                    

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

Tên AmazonPriceNinja AmazonPriceNinja
ID fombdbafaeelkmgedpjlgnkkdjdblcdg
URL Chính Thức https://chromewebstore.google.com/detail/amazonpriceninja/fombdbafaeelkmgedpjlgnkkdjdblcdg
Mô tả Shows when an item in your wishlist has increased in price!
Kích Thước Tệp 89.85 KB
Số Lần Cài Đặt 20
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2015-07-09
Ngày Phát Hành 2015-07-08
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Matthew
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AmazonPriceNinja",
    "description": "Shows when an item in your wishlist has increased in price!",
    "version": "0.2",
    "browser_action": {
        "default_icon": "apn.jpg",
        "default_title": "AmazonPriceNinja!"
    },
    "permissions": [
        "webRequest",
        "https:\/\/www.pricezombie.com\/*",
        "http:\/\/www.pricezombie.com\/*",
        "http:\/\/www.amazon.com\/gp\/registry\/wishlist\/*",
        "https:\/\/www.amazon.com\/gp\/registry\/wishlist\/*"
    ],
    "icons": {
        "16": "apn.jpg",
        "48": "apn.jpg",
        "128": "apn.jpg"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.amazon.com\/*\/wishlist\/*",
                "http:\/\/www.amazon.com\/*\/wishlist\/*"
            ],
            "js": [
                "jquery\/jquery.js",
                "contentScript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "eventScript.js"
        ]
    }
}