Alexa Developer Console Assistant

Be a more productive developer on Alexa Developer Console.

What is Alexa Developer Console Assistant?

Alexa Developer Console Assistant is a Chrome extension developed by niknah, and its main feature is "Be a more productive developer on Alexa Developer Console.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Alexa Developer Console Assistant Extension CRX File

Download Alexa Developer Console Assistant extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Alexa Developer Console Assistant Alexa Developer Console Assistant
ID bkmgfigngfikpgkobooodneenjdkceoe
Official URL https://chromewebstore.google.com/detail/alexa-developer-console-a/bkmgfigngfikpgkobooodneenjdkceoe
Description Be a more productive developer on Alexa Developer Console.
File Size 16.6 KB
Installation Count 47
Current Version 0.0.4
Last Updated 2020-11-07
Publish Date 2020-07-04
Developer niknah
Email [email protected]
Payment Type free
Help Page URL https://groups.google.com/d/forum/weezeewig-chrome-extensions
Supported Languages 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"
            ]
        }
    ]
}