AmazonPriceNinja

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

AmazonPriceNinja क्या है?

AmazonPriceNinja Matthew द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows when an item in your wishlist has increased in price!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में AmazonPriceNinja एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
        ]
    }
}