Alexa Developer Console Assistant
Be a more productive developer on Alexa Developer Console.
Cos'è Alexa Developer Console Assistant?
Alexa Developer Console Assistant è un'estensione di Chrome sviluppata da niknah, e la sua funzione principale è "Be a more productive developer on Alexa Developer Console.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Alexa Developer Console Assistant
Scarica i file di estensione Alexa Developer Console Assistant 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
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | bkmgfigngfikpgkobooodneenjdkceoe |
| URL Ufficiale | https://chromewebstore.google.com/detail/alexa-developer-console-a/bkmgfigngfikpgkobooodneenjdkceoe |
| Descrizione | Be a more productive developer on Alexa Developer Console. |
| Dimensione del File | 16.6 KB |
| Conteggio Installazioni | 47 |
| Versione Corrente | 0.0.4 |
| Ultimo Aggiornamento | 2020-11-07 |
| Data di Pubblicazione | 2020-07-04 |
| Sviluppatore | niknah |
| [email protected] | |
| Tipo di Pagamento | free |
| URL della Pagina di Aiuto | https://groups.google.com/d/forum/weezeewig-chrome-extensions |
| Lingue Supportate | 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"
]
}
]
} | |