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