GitHub-Diff-Whitespace
Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`)
Co to jest GitHub-Diff-Whitespace?
GitHub-Diff-Whitespace to rozszerzenie Chrome opracowane przez jasonkarns, a jego główną funkcją jest „Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`)”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GitHub-Diff-Whitespace
Pobierz pliki rozszerzeń GitHub-Diff-Whitespace w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Provide a UI button to toggle whitespace in GitHub diffs.
Podstawowe informacje o rozszerzeniu
Nazwa | GitHub-Diff-Whitespace |
ID | lhbcdehjihmbiafeodkfnbndleijnnhp |
Oficjalny URL | https://chromewebstore.google.com/detail/github-diff-whitespace/lhbcdehjihmbiafeodkfnbndleijnnhp |
Opis | Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`) |
Rozmiar pliku | 5.42 KB |
Liczba instalacji | 135 |
Aktualna Wersja | 1.3.2 |
Ostatnia Aktualizacja | 2015-09-14 |
Data Publikacji | 2015-09-14 |
Ocena | 3.57/5 Łącznie 7 Oceny |
Deweloper | jasonkarns |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/jasonkarns/userscripts/tree/master/github-diff-whitespace |
Adres URL Strony Pomocy | https://github.com/jasonkarns/userscripts/tree/master/github-diff-whitespace |
Obsługiwane Języki | 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\/*" ] } ] } |