Make GitHub Pages Full Width

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

O que é Make GitHub Pages Full Width?

Make GitHub Pages Full Width é uma extensão do Chrome desenvolvida por https://www.danskingdom.com, e sua principal característica é "Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Make GitHub Pages Full Width

Baixe arquivos de extensão Make GitHub Pages Full Width no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Make GitHub Pages Full Width Make GitHub Pages Full Width
ID dfpgjcidmobcpaoolhgchdcmdgenbaoa
URL Oficial https://chromewebstore.google.com/detail/make-github-pages-full-wi/dfpgjcidmobcpaoolhgchdcmdgenbaoa
Descrição Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.
Tamanho do Arquivo 5.43 KB
Contagem de Instalações 123
Versão Atual 1.0
Última Atualização 2014-05-27
Data de Publicação 2014-05-27
Classificação 2.75/5 Total de 4 Avaliações
Desenvolvedor https://www.danskingdom.com
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}