Make GitHub Pages Full Width
Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.
Qu'est-ce que Make GitHub Pages Full Width ?
Make GitHub Pages Full Width est une extension Chrome développée par https://www.danskingdom.com, et sa fonction principale est "Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Make GitHub Pages Full Width
Téléchargez les fichiers d'extension Make GitHub Pages Full Width au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Make GitHub Pages Full Width |
ID | dfpgjcidmobcpaoolhgchdcmdgenbaoa |
URL Officiel | https://chromewebstore.google.com/detail/make-github-pages-full-wi/dfpgjcidmobcpaoolhgchdcmdgenbaoa |
Description | Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser. |
Taille du Fichier | 5.43 KB |
Nombre d'Installations | 123 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2014-05-27 |
Date de Publication | 2014-05-27 |
Évaluation | 2.75/5 Total 4 Évaluations |
Développeur | https://www.danskingdom.com |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |