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\/*"
]
}
]
} | |