ElectricCommander Syntax Highlighting

[BETA] This extension adds syntax highlighting to the editStep page in the ElectricCommander UI.

Что такое ElectricCommander Syntax Highlighting?

ElectricCommander Syntax Highlighting - это расширение Chrome, разработанное nikhilvaze, и его основная функция - "[BETA] This extension adds syntax highlighting to the editStep page in the ElectricCommander UI.".

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

screenshot

Скачать файл CRX расширения ElectricCommander Syntax Highlighting

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

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

                        UPDATE: New location here:
https://chrome.google.com/webstore/detail/iijmdnkbooficfalafiljecngifeogin


This version is deprecated and will be removed. Please migrate to the above extension!

This chrome extension allows users to toggle syntax highlighting on and off on the Edit Step page in ElectricCommander.

If you are an ElectricCommander user writing or viewing procedures in the ElectricCommander web user interface then this extension is for you!

Works with ElectricCommander v4.2 or later.

Supports these languages: Perl, Shell, JavaScript, Python, Ruby, TCL.

Electric Cloud and ElectricCommander are
registered trademarks or trademarks of Electric Cloud, Incorporated.                    

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

Название ElectricCommander Syntax Highlighting ElectricCommander Syntax Highlighting
ID dljelkcpkcmpeilhjebfdkohnanhnkob
Официальный URL https://chromewebstore.google.com/detail/electriccommander-syntax/dljelkcpkcmpeilhjebfdkohnanhnkob
Описание [BETA] This extension adds syntax highlighting to the editStep page in the ElectricCommander UI.
Размер файла 247 KB
Количество установок 209
Текущая Версия 0.1.5
Последнее Обновление 2016-02-24
Дата публикации 2016-02-24
Рейтинг 4.92/5 Всего 13 оценок
Разработчик nikhilvaze
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ElectricCommander Syntax Highlighting",
    "description": "[BETA] This extension adds syntax highlighting to the editStep page in the ElectricCommander UI.",
    "version": "0.1.5",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/commander\/link\/*editStep*"
            ],
            "css": [
                "codemirror.css",
                "jquery-ui-1.10.2.custom.min.css"
            ],
            "js": [
                "jquery.js",
                "myscript.js",
                "codemirror.js",
                "wait.js",
                "perl.js",
                "shell.js",
                "javascript.js",
                "python.js",
                "ruby.js",
                "tcl.js",
                "jquery-ui-1.10.2.custom.min.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "images\/ui-bg_highlight-soft_100_eeeeee_1x100.png",
        "images\/ui-icons_222222_256x240.png"
    ]
}