AmazonPriceNinja
Shows when an item in your wishlist has increased in price!
Cos'è AmazonPriceNinja?
AmazonPriceNinja è un'estensione di Chrome sviluppata da Matthew, e la sua funzione principale è "Shows when an item in your wishlist has increased in price!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione AmazonPriceNinja
Scarica i file di estensione AmazonPriceNinja in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | AmazonPriceNinja |
ID | fombdbafaeelkmgedpjlgnkkdjdblcdg |
URL Ufficiale | https://chromewebstore.google.com/detail/amazonpriceninja/fombdbafaeelkmgedpjlgnkkdjdblcdg |
Descrizione | Shows when an item in your wishlist has increased in price! |
Dimensione del File | 89.85 KB |
Conteggio Installazioni | 20 |
Versione Corrente | 0.2 |
Ultimo Aggiornamento | 2015-07-09 |
Data di Pubblicazione | 2015-07-08 |
Valutazione | 1.00/5 Totale 1 Valutazioni |
Sviluppatore | Matthew |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } } |