AmazonPriceNinja

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

AmazonPriceNinjaคืออะไร?

AmazonPriceNinja เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Matthew และคุณลักษณะหลักของมันคือ "Shows when an item in your wishlist has increased in price!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AmazonPriceNinja

ดาวน์โหลดไฟล์ส่วนขยาย AmazonPriceNinja ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ AmazonPriceNinja AmazonPriceNinja
ID fombdbafaeelkmgedpjlgnkkdjdblcdg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/amazonpriceninja/fombdbafaeelkmgedpjlgnkkdjdblcdg
คำอธิบาย Shows when an item in your wishlist has increased in price!
ขนาดไฟล์ 89.85 KB
จำนวนการติดตั้ง 20
เวอร์ชันปัจจุบัน 0.2
อัปเดตครั้งล่าสุด 2015-07-09
วันที่เผยแพร่ 2015-07-08
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Matthew
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
        ]
    }
}