Amazon Show ASIN (ASA)
ASA is a 100% free extension that allows you to see full the title and ASIN code of the products on Amazon.com
Qu'est-ce que Amazon Show ASIN (ASA) ?
Amazon Show ASIN (ASA) est une extension Chrome développée par https://ngothang.me, et sa fonction principale est "ASA is a 100% free extension that allows you to see full the title and ASIN code of the products on Amazon.com".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Amazon Show ASIN (ASA)
Téléchargez les fichiers d'extension Amazon Show ASIN (ASA) au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
ASA is the fastest way to reveal search ASIN code, title research, and get content guidelines directly in Amazon.com. 100% free and forever.
Informations de Base sur l'Extension
Nom | Amazon Show ASIN (ASA) |
ID | ikaoklbgbhdjhgkobibiapgoakofjcen |
URL Officiel | https://chromewebstore.google.com/detail/amazon-show-asin-asa/ikaoklbgbhdjhgkobibiapgoakofjcen |
Description | ASA is a 100% free extension that allows you to see full the title and ASIN code of the products on Amazon.com |
Taille du Fichier | 45.9 KB |
Nombre d'Installations | 92 |
Version Actuelle | 0.0.3 |
Dernière Mise à Jour | 2022-09-20 |
Date de Publication | 2022-09-02 |
Développeur | https://ngothang.me |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://ngothang.me/ |
URL de la Page d'Aide | https://ngothang.me/contact/ |
URL de la Page de Politique de Confidentialité | https://ngothang.me/privacy-policy |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Amazon Show ASIN (ASA)", "version": "0.0.3", "manifest_version": 3, "description": "ASA is a 100% free extension that allows you to see full the title and ASIN code of the products on Amazon.com", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "action": { "default_icon": { "16": "images\/icon-16.png", "32": "images\/icon-32.png" }, "default_title": "Amazon Show ASIN (ASA)", "default_popup": "popup.html" }, "background": { "service_worker": "scripts\/background.js", "type": "module" }, "content_scripts": [ { "matches": [ "*:\/\/www.amazon.com\/*" ], "js": [ "index.js" ], "css": [ "styles\/main.css" ], "run_at": "document_idle" } ], "permissions": [ "storage", "tabs" ], "optional_permissions": [] } |