AmazonPriceNinja
Shows when an item in your wishlist has increased in price!
AmazonPriceNinjaとは何ですか?
AmazonPriceNinjaはMatthewによって開発されたChromeの拡張機能で、その主な機能は「Shows when an item in your wishlist has increased in price!」です。
拡張機能のスクリーンショット
AmazonPriceNinja拡張機能のCRXファイルをダウンロード
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 |
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" ] } } |