Alexa Developer Console Assistant

Be a more productive developer on Alexa Developer Console.

O que é Alexa Developer Console Assistant?

Alexa Developer Console Assistant é uma extensão do Chrome desenvolvida por niknah, e sua principal característica é "Be a more productive developer on Alexa Developer Console.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Alexa Developer Console Assistant

Baixe arquivos de extensão Alexa Developer Console Assistant no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Alexa Developer Console Assistant Alexa Developer Console Assistant
ID bkmgfigngfikpgkobooodneenjdkceoe
URL Oficial https://chromewebstore.google.com/detail/alexa-developer-console-a/bkmgfigngfikpgkobooodneenjdkceoe
Descrição Be a more productive developer on Alexa Developer Console.
Tamanho do Arquivo 16.6 KB
Contagem de Instalações 47
Versão Atual 0.0.4
Última Atualização 2020-11-07
Data de Publicação 2020-07-04
Desenvolvedor niknah
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://groups.google.com/d/forum/weezeewig-chrome-extensions
Idiomas Suportados 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"
            ]
        }
    ]
}