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
Τι είναι το Amazon Show ASIN (ASA);
Το Amazon Show ASIN (ASA) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://ngothang.me, και η κύρια λειτουργία του είναι "ASA is a 100% free extension that allows you to see full the title and ASIN code of the products on Amazon.com".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Amazon Show ASIN (ASA)
Λήψη αρχείων επέκτασης Amazon Show ASIN (ASA) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
ASA is the fastest way to reveal search ASIN code, title research, and get content guidelines directly in Amazon.com. 100% free and forever.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Amazon Show ASIN (ASA) |
ID | ikaoklbgbhdjhgkobibiapgoakofjcen |
Επίσημο URL | https://chromewebstore.google.com/detail/amazon-show-asin-asa/ikaoklbgbhdjhgkobibiapgoakofjcen |
Περιγραφή | ASA is a 100% free extension that allows you to see full the title and ASIN code of the products on Amazon.com |
Μέγεθος Αρχείου | 45.9 KB |
Αριθμός Εγκαταστάσεων | 92 |
Τρέχουσα Έκδοση | 0.0.3 |
Τελευταία Ενημέρωση | 2022-09-20 |
Ημερομηνία Δημοσίευσης | 2022-09-02 |
Προγραμματιστής | https://ngothang.me |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://ngothang.me/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://ngothang.me/contact/ |
URL της Σελίδας Πολιτικής Απορρήτου | https://ngothang.me/privacy-policy |
Υποστηριζόμενες Γλώσσες | 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": [] } |