Alexa Developer Console Assistant

Be a more productive developer on Alexa Developer Console.

Alexa Developer Console Assistant là gì?

Alexa Developer Console Assistant là một tiện ích mở rộng Chrome được phát triển bởi niknah, và tính năng chính của nó là "Be a more productive developer on Alexa Developer Console.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Alexa Developer Console Assistant

Tải xuống các tệp mở rộng Alexa Developer Console Assistant dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Alexa Developer Console Assistant Alexa Developer Console Assistant
ID bkmgfigngfikpgkobooodneenjdkceoe
URL Chính Thức https://chromewebstore.google.com/detail/alexa-developer-console-a/bkmgfigngfikpgkobooodneenjdkceoe
Mô tả Be a more productive developer on Alexa Developer Console.
Kích Thước Tệp 16.6 KB
Số Lần Cài Đặt 47
Phiên Bản Hiện Tại 0.0.4
Cập Nhật Lần Cuối 2020-11-07
Ngày Phát Hành 2020-07-04
Nhà Phát Triển niknah
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://groups.google.com/d/forum/weezeewig-chrome-extensions
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}