AmazonPriceNinja

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

What is AmazonPriceNinja?

AmazonPriceNinja is a Chrome extension developed by Matthew, and its main feature is "Shows when an item in your wishlist has increased in price!".

Extension Screenshots

screenshot
screenshot

Download AmazonPriceNinja Extension CRX File

Download AmazonPriceNinja extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name AmazonPriceNinja AmazonPriceNinja
ID fombdbafaeelkmgedpjlgnkkdjdblcdg
Official URL https://chromewebstore.google.com/detail/amazonpriceninja/fombdbafaeelkmgedpjlgnkkdjdblcdg
Description Shows when an item in your wishlist has increased in price!
File Size 89.85 KB
Installation Count 20
Current Version 0.2
Last Updated 2015-07-09
Publish Date 2015-07-08
Rating 1.00/5 Total 1 Ratings
Developer Matthew
Payment Type free
Supported Languages 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"
        ]
    }
}