Enhanced Glitch

Enhances the Glitch.com editor by adding missing features.

Что такое Enhanced Glitch?

Enhanced Glitch - это расширение Chrome, разработанное Jcc10, и его основная функция - "Enhances the Glitch.com editor by adding missing features.".

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

screenshot

Скачать файл CRX расширения Enhanced Glitch

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

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

                        Enhanced Glitch fixes and enhances features that are absent from the glitch.com editor.

Features added include:
* Adds in Code Beautifying: Ctrl-Q
* Limited Code Hinting Ctrl-Space
* Changes the "psst, Glitch auto-saves 八(^□^*)" to "Nice job remembering to save!" so we encourage the habit of hitting Ctrl-S since it's a valuable life skill.

Also available for Firefox.                    

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

Название Enhanced Glitch Enhanced Glitch
ID mjdoojmakfblcimigoiecmcbbgfnleib
Официальный URL https://chromewebstore.google.com/detail/enhanced-glitch/mjdoojmakfblcimigoiecmcbbgfnleib
Описание Enhances the Glitch.com editor by adding missing features.
Размер файла 134 KB
Количество установок 241
Текущая Версия 0.0.2.0
Последнее Обновление 2019-07-28
Дата публикации 2019-07-27
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Jcc10
Тип оплаты free
Официальный сайт расширения https://enhanced-glitch.glitch.me/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Enhanced Glitch",
    "description": "Enhances the Glitch.com editor by adding missing features.",
    "version": "0.0.2.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/glitch.com\/edit\/*"
            ],
            "js": [
                "inject.js"
            ],
            "css": [
                "codeHinting.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "js-beautify_1.10.1_beautify.js",
        "js-beautify_1.10.1_beautify-css.js",
        "js-beautify_1.10.1_beautify-html.js",
        "content.js"
    ],
    "browser_action": {
        "default_icon": {
            "16": "16.png",
            "32": "32.png"
        },
        "default_popup": "default_popup.html"
    },
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    }
}