digdrop - Amazon price drops digger
Amazon price tracker, price drops explorer, Amazon price history chart app.
What is digdrop - Amazon price drops digger?
digdrop - Amazon price drops digger is a Chrome extension developed by http://digdrop.com, and its main feature is "Amazon price tracker, price drops explorer, Amazon price history chart app.".
Extension Screenshots
Download digdrop - Amazon price drops digger Extension CRX File
Download digdrop - Amazon price drops digger 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
This extension provides information about Amazon.com products that have incurred recent price drops, along with a product price history chart.
Extension Basic Information
Name | |
ID | eldgnmpbphbeogogkkpkjihnfmpcoian |
Official URL | https://chrome.google.com/webstore/detail/digdrop-amazon-price-drop/eldgnmpbphbeogogkkpkjihnfmpcoian |
Description | Amazon price tracker, price drops explorer, Amazon price history chart app. |
File Size | 34.68 KB |
Installation Count | 222 |
Current Version | 1.8 |
Last Updated | 2015-02-14 |
Publish Date | 2015-02-14 |
Rating | 1.00/5 Total 1 Ratings |
Developer | http://digdrop.com |
Payment Type | free |
Extension Website | http://digdrop.com/ |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "digdrop - Amazon price drops digger", "description": "Amazon price tracker, price drops explorer, Amazon price history chart app.", "version": "1.8", "icons": { "19": "icon.png", "48": "icon.png", "128": "icon.png" }, "homepage_url": "http:\/\/digdrop.com\/", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_title": "digdrop - Amazon price drops digger", "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ], "externally_connectable": { "matches": [ "*:\/\/*.digdrop.com\/*" ] }, "content_scripts": [ { "matches": [ "http:\/\/*.amazon.com\/*" ], "js": [ "page-scrape.js" ], "run_at": "document_end" } ] } |