Repo Split
Browse code in a comfortable way
什么是Repo Split?
Repo Split是由Toni U开发的Chrome扩展程序,该扩展的主要功能是“Browse code in a comfortable way”。
扩展截图
下载Repo Split扩展crx文件
下载Repo Split扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Repo Split lets you browse code hosted on Github/Gitlab in a different way. You can open multiple files at once placed in a 2x2 split view.
Future improvements:
- Firefox plugin
- Bitbucket
- Color themes
- Offline browsing 扩展基本信息
| 名称 | |
| ID | ijjekenpnfnppndkdnfmcamnjaiocmgn |
| 官方URL | https://chromewebstore.google.com/detail/repo-split/ijjekenpnfnppndkdnfmcamnjaiocmgn |
| 简介 | Browse code in a comfortable way |
| 文件大小 | 307 KB |
| 安装次数 | 302 |
| 当前版本 | 0.2.0 |
| 更新时间 | 2017-05-11 |
| 上架时间 | 2017-05-11 |
| 评分 | 3.67/5 共3次评分 |
| 开发者 | Toni U |
| 付费类型 | free |
| 扩展官网 | https://github.com/git-toni/reposplit |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Repo Split",
"description": "Browse code in a comfortable way",
"version": "0.2.0",
"browser_action": {
"default_title": "Repo Split"
},
"icons": {
"16": "icon.png",
"48": "icon.png"
},
"permissions": [
"https:\/\/github.com\/*",
"https:\/\/gitlab.com\/*"
],
"background": {
"scripts": [
"starter.js"
]
}
} | |