AmazonPriceNinja

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

Qu'est-ce que AmazonPriceNinja ?

AmazonPriceNinja est une extension Chrome développée par Matthew, et sa fonction principale est "Shows when an item in your wishlist has increased in price!".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension AmazonPriceNinja

Téléchargez les fichiers d'extension AmazonPriceNinja au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom AmazonPriceNinja AmazonPriceNinja
ID fombdbafaeelkmgedpjlgnkkdjdblcdg
URL Officiel https://chromewebstore.google.com/detail/amazonpriceninja/fombdbafaeelkmgedpjlgnkkdjdblcdg
Description Shows when an item in your wishlist has increased in price!
Taille du Fichier 89.85 KB
Nombre d'Installations 20
Version Actuelle 0.2
Dernière Mise à Jour 2015-07-09
Date de Publication 2015-07-08
Évaluation 1.00/5 Total 1 Évaluations
Développeur Matthew
Type de Paiement free
Langues Prises en Charge 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"
        ]
    }
}