GitHub-Diff-Whitespace
Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`)
什么是GitHub-Diff-Whitespace?
GitHub-Diff-Whitespace是由jasonkarns开发的Chrome扩展程序,该扩展的主要功能是“Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`)”。
扩展截图
下载GitHub-Diff-Whitespace扩展crx文件
下载GitHub-Diff-Whitespace扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Provide a UI button to toggle whitespace in GitHub diffs. 扩展基本信息
| 名称 | |
| ID | lhbcdehjihmbiafeodkfnbndleijnnhp |
| 官方URL | https://chromewebstore.google.com/detail/github-diff-whitespace/lhbcdehjihmbiafeodkfnbndleijnnhp |
| 简介 | Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`) |
| 文件大小 | 5.42 KB |
| 安装次数 | 135 |
| 当前版本 | 1.3.2 |
| 更新时间 | 2015-09-14 |
| 上架时间 | 2015-09-14 |
| 评分 | 3.57/5 共7次评分 |
| 开发者 | jasonkarns |
| 付费类型 | free |
| 扩展官网 | https://github.com/jasonkarns/userscripts/tree/master/github-diff-whitespace |
| 帮助页面URL | https://github.com/jasonkarns/userscripts/tree/master/github-diff-whitespace |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GitHub-Diff-Whitespace",
"version": "1.3.2",
"manifest_version": 2,
"description": "Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`)",
"icons": {
"128": "icon.png"
},
"content_scripts": [
{
"js": [
"github-diff-whitespace.js"
],
"matches": [
"https:\/\/github.com\/*\/commit\/*",
"https:\/\/github.com\/*\/compare\/*",
"https:\/\/github.com\/*\/pull\/*"
]
}
]
} | |