Make GitHub Pages Full Width
Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.
Co to jest Make GitHub Pages Full Width?
Make GitHub Pages Full Width to rozszerzenie Chrome opracowane przez https://www.danskingdom.com, a jego główną funkcją jest „Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Make GitHub Pages Full Width
Pobierz pliki rozszerzeń Make GitHub Pages Full Width 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
Makes the GitHub Pull Request, Commit, and Blob pages span the full width of your browser, rather than maxing out at the default ~900 pixels. This makes viewing code on GitHub much easier, as most developers have widescreen monitors. If the page fails to expand, simply refresh the page.
Podstawowe informacje o rozszerzeniu
Nazwa | Make GitHub Pages Full Width |
ID | dfpgjcidmobcpaoolhgchdcmdgenbaoa |
Oficjalny URL | https://chromewebstore.google.com/detail/make-github-pages-full-wi/dfpgjcidmobcpaoolhgchdcmdgenbaoa |
Opis | Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser. |
Rozmiar pliku | 5.43 KB |
Liczba instalacji | 123 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2014-05-27 |
Data Publikacji | 2014-05-27 |
Ocena | 2.75/5 Łącznie 4 Oceny |
Deweloper | https://www.danskingdom.com |
Typ Płatności | free |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Make GitHub Pages Full Width", "description": "Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.", "version": "1.0", "icons": { "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/pull\/*\/files*", "https:\/\/github.com\/*\/commit\/*", "https:\/\/github.com\/*\/blob\/*" ], "js": [ "MakeGitHubPullRequestCommitAndBlobPagesFullWidth.user.js" ] } ] } |