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…
Cos'è Amazon ASIN Checker?
Amazon ASIN Checker è un'estensione di Chrome sviluppata da https://extensionsworld.com, e la sua funzione principale è "Check ASIN status. Get information about a list of products, only by providing ASIN data. If you also provide prices, you can…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Amazon ASIN Checker
Scarica i file di estensione Amazon ASIN Checker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Amazon ASIN Checker |
ID | jhmikeeececplgomdjnahelcfoekohpo |
URL Ufficiale | https://chromewebstore.google.com/detail/amazon-asin-checker/jhmikeeececplgomdjnahelcfoekohpo |
Descrizione | Check ASIN status. Get information about a list of products, only by providing ASIN data. If you also provide prices, you can… |
Dimensione del File | 56.54 KB |
Conteggio Installazioni | 25 |
Versione Corrente | 0.0.3 |
Ultimo Aggiornamento | 2021-02-16 |
Data di Pubblicazione | 2021-02-06 |
Sviluppatore | https://extensionsworld.com |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://extensionsworld.com/contact |
URL della Pagina della Politica sulla Privacy | https://extensionsworld.com/legal |
Lingue Supportate | 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" ] } |