Alexa Skills Kit Simulator Enhancer

Speed up Alexa Skill testing in the Alexa Skill Console

Что такое Alexa Skills Kit Simulator Enhancer?

Alexa Skills Kit Simulator Enhancer - это расширение Chrome, разработанное https://www.jovo.tech, и его основная функция - "Speed up Alexa Skill testing in the Alexa Skill Console".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Alexa Skills Kit Simulator Enhancer

Скачайте файлы расширений Alexa Skills Kit Simulator Enhancer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This Chrome extension lets you test your Alexa Skills faster in the Alexa Skills Kit Simulator.

Features include:
- Replay utterances without typing them again
- Save utterances into buttons to save time when you're back
- Reorder utterance buttons
- Widen the left-hand panel

Find more information here: https://github.com/jovotech/ask-console-chrome-extension                    

Основная информация о расширении

Название Alexa Skills Kit Simulator Enhancer Alexa Skills Kit Simulator Enhancer
ID opjjjciodammljgdambcjmljkcjblkkk
Официальный URL https://chromewebstore.google.com/detail/alexa-skills-kit-simulato/opjjjciodammljgdambcjmljkcjblkkk
Описание Speed up Alexa Skill testing in the Alexa Skill Console
Размер файла 74.54 KB
Количество установок 834
Текущая Версия 1.4
Последнее Обновление 2022-03-23
Дата публикации 2019-09-24
Рейтинг 5.00/5 Всего 16 оценок
Разработчик https://www.jovo.tech
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.jovo.tech
URL страницы помощи https://github.com/jovotech/ask-console-chrome-extension
URL страницы политики конфиденциальности https://www.jovo.tech/privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Alexa Skills Kit Simulator Enhancer",
    "description": "Speed up Alexa Skill testing in the Alexa Skill Console",
    "version": "1.4",
    "icons": {
        "48": "\/img\/icon_48.png",
        "128": "\/img\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/developer.amazon.com\/alexa\/console\/ask\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "jquery-ui.min.js",
                "content.js",
                "pageIndex.js",
                "pageTest.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}