ElectricFlow Syntax Highlighting

This extension adds syntax highlighting to the Step command page in the ElectricFlow UI.

¿Qué es ElectricFlow Syntax Highlighting?

ElectricFlow Syntax Highlighting es una extensión de Chrome desarrollada por lrochette, y su función principal es "This extension adds syntax highlighting to the Step command page in the ElectricFlow UI.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión ElectricFlow Syntax Highlighting

Descarga archivos de extensión ElectricFlow Syntax Highlighting en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

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

Works with ElectricFlow v4.2 or later.

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

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

Información Básica de la Extensión

Nombre ElectricFlow Syntax Highlighting ElectricFlow Syntax Highlighting
ID iijmdnkbooficfalafiljecngifeogin
URL Oficial https://chromewebstore.google.com/detail/electricflow-syntax-highl/iijmdnkbooficfalafiljecngifeogin
Descripción This extension adds syntax highlighting to the Step command page in the ElectricFlow UI.
Tamaño del Archivo 193 KB
Cantidad de Instalaciones 48
Versión Actual 1.0.1
Última Actualización 2017-03-24
Fecha de Publicación 2017-03-24
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador lrochette
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.electric-cloud.com
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ElectricFlow Syntax Highlighting",
    "description": "This extension adds syntax highlighting to the Step command page in the ElectricFlow UI.",
    "version": "1.0.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/commander\/link\/*editStep*"
            ],
            "css": [
                "codemirror\/lib\/codemirror.css",
                "jquery-ui-1.10.2.custom.min.css"
            ],
            "js": [
                "wait.js",
                "jquery.js",
                "jquery-ui-1.10.2.custom.min.js",
                "codemirror\/lib\/codemirror.js",
                "myscript.js",
                "codemirror\/addon\/edit\/matchbrackets.js",
                "codemirror\/mode\/perl\/perl.js",
                "codemirror\/mode\/shell\/shell.js",
                "codemirror\/mode\/javascript\/javascript.js",
                "codemirror\/mode\/python\/python.js",
                "codemirror\/mode\/ruby\/ruby.js",
                "codemirror\/mode\/groovy\/groovy.js",
                "codemirror\/mode\/tcl\/tcl.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}