Alexa Developer Console Assistant

Be a more productive developer on Alexa Developer Console.

Alexa Developer Console Assistantとは何ですか?

Alexa Developer Console Assistantはniknahによって開発されたChromeの拡張機能で、その主な機能は「Be a more productive developer on Alexa Developer Console.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Alexa Developer Console Assistant拡張機能のCRXファイルをダウンロード

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 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
Eメール [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"
            ]
        }
    ]
}