Github Expand Diff
A user script for Chrome that allows you to expand the missing lines in a Github diff.
什么是Github Expand Diff?
Github Expand Diff是由Michael Ridgway开发的Chrome扩展程序,该扩展的主要功能是“A user script for Chrome that allows you to expand the missing lines in a Github diff.”。
扩展截图
下载Github Expand Diff扩展crx文件
下载Github Expand Diff扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | imakbajpbolcgnkfhhlhipbjppfomlij |
| 官方URL | https://chromewebstore.google.com/detail/github-expand-diff/imakbajpbolcgnkfhhlhipbjppfomlij |
| 简介 | A user script for Chrome that allows you to expand the missing lines in a Github diff. |
| 文件大小 | 5.63 KB |
| 安装次数 | 121 |
| 当前版本 | 0.0.1.6 |
| 更新时间 | 2014-06-18 |
| 上架时间 | 2014-06-18 |
| 评分 | 3.86/5 共7次评分 |
| 开发者 | Michael Ridgway |
| 付费类型 | free |
| 扩展官网 | https://github.com/mridgway/github-expand-diff |
| 帮助页面URL | https://github.com/mridgway/github-expand-diff/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Github Expand Diff",
"version": "0.0.1.6",
"description": "A user script for Chrome that allows you to expand the missing lines in a Github diff.",
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"https:\/\/*.com\/*\/*\/pull\/*",
"https:\/\/*.com\/*\/*\/commit\/*",
"https:\/\/*.com\/*\/*\/compare\/*"
],
"include_globs": [
"https:\/\/github.com\/*",
"https:\/\/github.*.com\/*",
"https:\/\/git.*.com\/*"
],
"run_at": "document_end",
"js": [
"github-expand-diff.user.js"
]
}
]
} | |