Make GitHub Pages Full Width

Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.

Hvad er Make GitHub Pages Full Width?

Make GitHub Pages Full Width er en Chrome-udvidelse udviklet af https://www.danskingdom.com, og dens hovedfunktion er "Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.".

Udvidelsesskærmbilleder

screenshot

Download Make GitHub Pages Full Width-udvidelses-CRX-fil

Download Make GitHub Pages Full Width-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn Make GitHub Pages Full Width Make GitHub Pages Full Width
ID dfpgjcidmobcpaoolhgchdcmdgenbaoa
Officiel URL https://chromewebstore.google.com/detail/make-github-pages-full-wi/dfpgjcidmobcpaoolhgchdcmdgenbaoa
Beskrivelse Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.
Filstørrelse 5.43 KB
Antal Installationer 123
Nuværende Version 1.0
Senest Opdateret 2014-05-27
Udgivelsesdato 2014-05-27
Bedømmelse 2.75/5 Samlet 4 Bedømmelser
Udvikler https://www.danskingdom.com
Betalingsmetode free
Understøttede Sprog 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"
            ]
        }
    ]
}