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.".
Снимки экрана расширения
Скачать файл 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. Основная информация о расширении
| Название | |
| 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"
]
}
]
} | |