Amazon ASIN Checker
Check ASIN status. Get information about a list of products, only by providing ASIN data. If you also provide prices, you can…
What is Amazon ASIN Checker?
Amazon ASIN Checker is a Chrome extension developed by https://extensionsworld.com, and its main feature is "Check ASIN status. Get information about a list of products, only by providing ASIN data. If you also provide prices, you can…".
Extension Screenshots
Download Amazon ASIN Checker Extension CRX File
Download Amazon ASIN 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
Check ASIN status. Get information about a list of products, only by providing ASIN data. If you also provide prices, you can compare new and old results
Extension Basic Information
Name | Amazon ASIN Checker |
ID | jhmikeeececplgomdjnahelcfoekohpo |
Official URL | https://chromewebstore.google.com/detail/amazon-asin-checker/jhmikeeececplgomdjnahelcfoekohpo |
Description | Check ASIN status. Get information about a list of products, only by providing ASIN data. If you also provide prices, you can… |
File Size | 56.54 KB |
Installation Count | 25 |
Current Version | 0.0.3 |
Last Updated | 2021-02-16 |
Publish Date | 2021-02-06 |
Developer | https://extensionsworld.com |
[email protected] | |
Payment Type | free |
Help Page URL | https://extensionsworld.com/contact |
Privacy Policy Page URL | https://extensionsworld.com/legal |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Amazon ASIN Checker", "permissions": [ "https:\/\/*.amazon.co.uk\/*", "https:\/\/*.amazon.com\/*", "https:\/\/*.amazon.de\/*", "https:\/\/*.amazon.ca\/*", "storage" ], "version": "0.0.3", "background": { "scripts": [ "js\/utils.js", "js\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.amazon.co.uk\/*", "https:\/\/*.amazon.com\/*", "https:\/\/*.amazon.de\/*", "https:\/\/*.amazon.ca\/*" ], "js": [ "js\/utils.js", "js\/index.js" ] } ], "icons": { "128": "icon128.png", "64": "icon64.png", "32": "icon32.png" }, "browser_action": { "default_icon": { "128": "icon128.png", "64": "icon64.png", "32": "icon32.png" }, "default_title": "Amazon ASIN Checker", "default_popup": "html\/index.html" }, "web_accessible_resources": [ "js\/injectable.js", "html\/redirectFB.html" ] } |