ElectricFlow Syntax Highlighting
This extension adds syntax highlighting to the Step command page in the ElectricFlow UI.
什么是ElectricFlow Syntax Highlighting?
ElectricFlow Syntax Highlighting是由lrochette开发的Chrome扩展程序,该扩展的主要功能是“This extension adds syntax highlighting to the Step command page in the ElectricFlow UI.”。
扩展截图
下载ElectricFlow Syntax Highlighting扩展crx文件
下载ElectricFlow Syntax Highlighting扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | ElectricFlow Syntax Highlighting |
ID | iijmdnkbooficfalafiljecngifeogin |
官方URL | https://chromewebstore.google.com/detail/electricflow-syntax-highl/iijmdnkbooficfalafiljecngifeogin |
简介 | This extension adds syntax highlighting to the Step command page in the ElectricFlow UI. |
文件大小 | 193 KB |
安装次数 | 48 |
当前版本 | 1.0.1 |
更新时间 | 2017-03-24 |
上架时间 | 2017-03-24 |
评分 | 5.00/5 共1次评分 |
开发者 | lrochette |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.electric-cloud.com |
支持的语言 | 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" } } |