OctoEdit
Syntax Highlighting mini-editor for GitHub.com
什么是OctoEdit?
OctoEdit是由Andrew Levine开发的Chrome扩展程序,该扩展的主要功能是“Syntax Highlighting mini-editor for GitHub.com”。
扩展截图
下载OctoEdit扩展crx文件
下载OctoEdit扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Adds a new tab to the comment edit area in GitHub, providing Markdown syntax highlighting and tabbing behavior.
Huge thanks to CodeMirror and Marijn Haverbeke for providing a free, MIT-licensed editor. 扩展基本信息
| 名称 | |
| ID | ecnglinljpjkbgmdpeiglonddahpbkeb |
| 官方URL | https://chromewebstore.google.com/detail/octoedit/ecnglinljpjkbgmdpeiglonddahpbkeb |
| 简介 | Syntax Highlighting mini-editor for GitHub.com |
| 文件大小 | 1.16 MB |
| 安装次数 | 140 |
| 当前版本 | 0.5.1 |
| 更新时间 | 2016-05-27 |
| 上架时间 | 2016-05-26 |
| 开发者 | Andrew Levine |
| 付费类型 | free |
| 扩展官网 | https://github.com/DrewML/OctoEdit |
| 帮助页面URL | https://github.com/DrewML/OctoEdit/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "OctoEdit",
"version": "0.5.1",
"description": "Syntax Highlighting mini-editor for GitHub.com",
"manifest_version": 2,
"permissions": [
"storage"
],
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"content_scripts": [
{
"matches": [
"*:\/\/github.com\/*"
],
"js": [
"content-script.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
"pagenav-listener.js"
]
} | |