Alexa Developer Console Assistant

Be a more productive developer on Alexa Developer Console.

Alexa Developer Console Assistant क्या है?

Alexa Developer Console Assistant niknah द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Be a more productive developer on Alexa Developer Console."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Alexa Developer Console Assistant एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
            ]
        }
    ]
}