Alexa Developer Console Assistant

Be a more productive developer on Alexa Developer Console.

Alexa Developer Console Assistantคืออะไร?

Alexa Developer Console Assistant เป็นส่วนขยายของ Chrome ที่พัฒนาโดย niknah และคุณลักษณะหลักของมันคือ "Be a more productive developer on Alexa Developer Console."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Alexa Developer Console Assistant

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
            ]
        }
    ]
}