Github code folding
Add code folding functionality on github for code indented using 2 spaces
什么是Github code folding?
Github code folding是由Ryan Harkins开发的Chrome扩展程序,该扩展的主要功能是“Add code folding functionality on github for code indented using 2 spaces”。
扩展截图
下载Github code folding扩展crx文件
下载Github code folding扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | iokmjnihlfnchffcmjihafillepmhogk |
| 官方URL | https://chromewebstore.google.com/detail/github-code-folding/iokmjnihlfnchffcmjihafillepmhogk |
| 简介 | Add code folding functionality on github for code indented using 2 spaces |
| 文件大小 | 14.7 KB |
| 安装次数 | 41 |
| 当前版本 | 0.0.1 |
| 更新时间 | 2015-05-23 |
| 上架时间 | 2015-05-23 |
| 评分 | 3.00/5 共2次评分 |
| 开发者 | Ryan Harkins |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Github code folding",
"version": "0.0.1",
"manifest_version": 2,
"description": "Add code folding functionality on github for code indented using 2 spaces",
"homepage_url": "http:\/\/github.com",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_locale": "en",
"permissions": [
"https:\/\/github.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"css": [
"src\/inject\/inject.css"
],
"js": [
"src\/inject\/inject.js"
]
}
]
} | |