Make GitHub Pages Full Width

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

Apa itu Make GitHub Pages Full Width?

Make GitHub Pages Full Width adalah ekstensi Chrome yang dikembangkan oleh https://www.danskingdom.com, dan fitur utamanya adalah "Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Make GitHub Pages Full Width

Unduh file ekstensi Make GitHub Pages Full Width dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Make GitHub Pages Full Width Make GitHub Pages Full Width
ID dfpgjcidmobcpaoolhgchdcmdgenbaoa
URL Resmi https://chromewebstore.google.com/detail/make-github-pages-full-wi/dfpgjcidmobcpaoolhgchdcmdgenbaoa
Deskripsi Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.
Ukuran File 5.43 KB
Jumlah Instalasi 123
Versi Saat Ini 1.0
Terakhir Diperbarui 2014-05-27
Tanggal Publikasi 2014-05-27
Penilaian 2.75/5 Total 4 Penilaian
Pengembang https://www.danskingdom.com
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}