Github Expand Diff
A user script for Chrome that allows you to expand the missing lines in a Github diff.
Co to jest Github Expand Diff?
Github Expand Diff to rozszerzenie Chrome opracowane przez Michael Ridgway, a jego główną funkcją jest „A user script for Chrome that allows you to expand the missing lines in a Github diff.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Github Expand Diff
Pobierz pliki rozszerzeń Github Expand Diff 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
Podstawowe informacje o rozszerzeniu
Nazwa | Github Expand Diff |
ID | imakbajpbolcgnkfhhlhipbjppfomlij |
Oficjalny URL | https://chromewebstore.google.com/detail/github-expand-diff/imakbajpbolcgnkfhhlhipbjppfomlij |
Opis | A user script for Chrome that allows you to expand the missing lines in a Github diff. |
Rozmiar pliku | 5.63 KB |
Liczba instalacji | 121 |
Aktualna Wersja | 0.0.1.6 |
Ostatnia Aktualizacja | 2014-06-18 |
Data Publikacji | 2014-06-18 |
Ocena | 3.86/5 Łącznie 7 Oceny |
Deweloper | Michael Ridgway |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/mridgway/github-expand-diff |
Adres URL Strony Pomocy | https://github.com/mridgway/github-expand-diff/issues |
Obsługiwane Języki | 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" ] } ] } |