GitHub Enhancement Suite
A set of tools to enhance the GitHub experience.
什么是GitHub Enhancement Suite?
GitHub Enhancement Suite是由DTwigs开发的Chrome扩展程序,该扩展的主要功能是“A set of tools to enhance the GitHub experience.”。
扩展截图
下载GitHub Enhancement Suite扩展crx文件
下载GitHub Enhancement Suite扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The GitHub Enhancement Suite improves your GitHub experience.
Tools:
File Filter: Filter your github files by file type when viewing code changes.
Commit Compare: a small "down arrow" icon next to each commit in a PR allowing you to compare that commit to the latest commit in that PR.
Source Code:
https://github.com/DTwigs/FilterDiff 扩展基本信息
| 名称 | |
| ID | eiehflbilhldhfbnolbnggcapbjmnpmo |
| 官方URL | https://chromewebstore.google.com/detail/github-enhancement-suite/eiehflbilhldhfbnolbnggcapbjmnpmo |
| 简介 | A set of tools to enhance the GitHub experience. |
| 文件大小 | 56.24 KB |
| 安装次数 | 260 |
| 当前版本 | 0.4 |
| 更新时间 | 2014-02-22 |
| 上架时间 | 2014-02-21 |
| 评分 | 2.00/5 共1次评分 |
| 开发者 | DTwigs |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GitHub Enhancement Suite",
"version": "0.4",
"manifest_version": 2,
"description": "A set of tools to enhance the GitHub experience.",
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"browser_action": {
"name": "Initialize GitHub Enhancement Suite",
"default_icon": "images\/icon128.png"
},
"web_accessible_resources": [
"images\/icon.png"
],
"content_scripts": [
{
"js": [
"jquery.min.js",
"background.js"
],
"css": [
"mystyles.css"
],
"matches": [
"http:\/\/github.com\/*",
"https:\/\/github.com\/*"
]
}
]
} | |