Alexa Developer Console Assistant
Be a more productive developer on Alexa Developer Console.
Τι είναι το Alexa Developer Console Assistant;
Το Alexa Developer Console Assistant είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον niknah, και η κύρια λειτουργία του είναι "Be a more productive developer on Alexa Developer Console.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Alexa Developer Console Assistant
Λήψη αρχείων επέκτασης Alexa Developer Console Assistant σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Adds some features for the Amazon Alexa Developer Console Test tab: A repeat button in the test tab for saying the same thing again. Distribution tab: copy locale button in the distribution screen to copy the info to other locales in the same language. Build tab: Json editor has a copy link to copy the json to other locales of the same language. Cloudwatch logs: A "tail latest logs" link to automatically open up the latest logs or when you press refresh.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Alexa Developer Console Assistant |
ID | bkmgfigngfikpgkobooodneenjdkceoe |
Επίσημο URL | https://chromewebstore.google.com/detail/alexa-developer-console-a/bkmgfigngfikpgkobooodneenjdkceoe |
Περιγραφή | Be a more productive developer on Alexa Developer Console. |
Μέγεθος Αρχείου | 16.6 KB |
Αριθμός Εγκαταστάσεων | 47 |
Τρέχουσα Έκδοση | 0.0.4 |
Τελευταία Ενημέρωση | 2020-11-07 |
Ημερομηνία Δημοσίευσης | 2020-07-04 |
Προγραμματιστής | niknah |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Διεύθυνση URL της Σελίδας Βοήθειας | https://groups.google.com/d/forum/weezeewig-chrome-extensions |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Alexa Developer Console Assistant", "description": "Be a more productive developer on Alexa Developer Console.", "version": "0.0.4", "manifest_version": 2, "icons": { "128": "icon_128.png" }, "permissions": [ "activeTab", "storage", "clipboardRead" ], "content_scripts": [ { "matches": [ "https:\/\/developer.amazon.com\/alexa\/console\/ask\/test\/*", "https:\/\/developer.amazon.com\/alexa\/console\/ask\/build\/*", "https:\/\/developer.amazon.com\/alexa\/console\/ask\/publish\/*", "https:\/\/console.aws.amazon.com\/cloudwatch\/home*", "https:\/\/*.console.aws.amazon.com\/cloudwatch\/home*" ], "run_at": "document_idle", "exclude_matches": [], "js": [ "AlexaDevConsoleAssist.js" ] } ] } |