Side-by-side diff view in Github
Adds the option to view diffs side-by-side in Github
Co to jest Side-by-side diff view in Github?
Side-by-side diff view in Github to rozszerzenie Chrome opracowane przez smike, a jego główną funkcją jest „Adds the option to view diffs side-by-side in Github”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Side-by-side diff view in Github
Pobierz pliki rozszerzeń Side-by-side diff view in Github 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
This extension will transform the diff view on Github to a side-by-side view. Just load a commit page and click the "Show Side-By-Side Diffs" button. Things that work: - Switch between side-by-side and unified diffs - Previous comments are shown - New comments can be added to any line, but they look funky until you reload. Found a bug? Have a feature you'd like but isn't working? Please contribute at http://github.com/smike/diffhub.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | ihmhmdmhllhleioijdeoocgoddjckbcd |
Oficjalny URL | https://chromewebstore.google.com/detail/side-by-side-diff-view-in/ihmhmdmhllhleioijdeoocgoddjckbcd |
Opis | Adds the option to view diffs side-by-side in Github |
Rozmiar pliku | 51.96 KB |
Liczba instalacji | 118 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2013-03-26 |
Data Publikacji | 2013-03-26 |
Ocena | 2.40/5 Łącznie 10 Oceny |
Deweloper | smike |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | http://github.com/smike/diffhub |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Side-by-side diff view in Github", "version": "1.0.1", "description": "Adds the option to view diffs side-by-side in Github", "icons": { "128": "icon.png" }, "background": { "scripts": [ "secrets.js", "bg.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "http:\/\/github.com\/*" ], "js": [ "lib\/jquery-1.9.1.min.js", "content.js" ], "css": [ "lib\/diffhub.css" ] } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |