Amazon Price Checker
This extension checks prices on Amazon.
What is Amazon Price Checker?
Amazon Price Checker is a Chrome extension developed by Unknown, and its main feature is "This extension checks prices on Amazon.".
Extension Screenshots
Download Amazon Price Checker Extension CRX File
Download Amazon Price Checker 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 searches Google for cheaper prices.
Extension Basic Information
Name | Amazon Price Checker |
ID | nohfhkglmighmobcmbebcdjlffpdmdni |
Official URL | https://chromewebstore.google.com/detail/amazon-price-checker/nohfhkglmighmobcmbebcdjlffpdmdni |
Description | This extension checks prices on Amazon. |
File Size | 41.43 KB |
Installation Count | 133 |
Current Version | 1.0 |
Last Updated | 2016-12-01 |
Publish Date | 2016-12-01 |
Rating | 4.00/5 Total 1 Ratings |
Developer | Unknown |
Payment Type | free |
Supported Languages | de |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Amazon Price Checker", "description": "This extension checks prices on Amazon.", "version": "1.0", "icons": { "16": "img\/amazon.png", "48": "img\/amazon.png", "128": "img\/amazon.png" }, "browser_action": { "default_icon": "img\/amazon.png", "default_title": "Amazon", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.amazon.de\/*" ], "js": [ "js\/jquery-1.7.1.min.js", "js\/content.js" ], "run_at": "document_idle", "all_frames": false } ], "background": { "persistent": false, "scripts": [ "js\/background.js" ] }, "permissions": [ "activeTab", "tabs", "https:\/\/ajax.googleapis.com\/", "https:\/\/www.google.de\/" ] } |