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 |
官方網址 | 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" ] } } |