Make GitHub Pages Full Width
Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.
Vad är Make GitHub Pages Full Width?
Make GitHub Pages Full Width är en Chrome-tillägg utvecklad av https://www.danskingdom.com, och dess huvudfunktion är "Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.".
Tilläggsskärmbilder
Ladda ner Make GitHub Pages Full Width-förlängningens CRX-fil
Ladda ner Make GitHub Pages Full Width-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Make GitHub Pages Full Width |
ID | dfpgjcidmobcpaoolhgchdcmdgenbaoa |
Officiell webbadress | https://chromewebstore.google.com/detail/make-github-pages-full-wi/dfpgjcidmobcpaoolhgchdcmdgenbaoa |
Beskrivning | Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser. |
Filstorlek | 5.43 KB |
Antal Installationer | 123 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2014-05-27 |
Publiceringsdatum | 2014-05-27 |
Betyg | 2.75/5 Totalt 4 Betyg |
Utvecklare | https://www.danskingdom.com |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |