Make GitHub Pages Full Width

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

什么是Make GitHub Pages Full Width?

Make GitHub Pages Full Width是由https://www.danskingdom.com开发的Chrome扩展程序,该扩展的主要功能是“Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.”。

扩展截图

screenshot

下载Make GitHub Pages Full Width扩展crx文件

下载Make GitHub Pages Full Width扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Make GitHub Pages Full Width Make GitHub Pages Full Width
ID dfpgjcidmobcpaoolhgchdcmdgenbaoa
官方URL https://chromewebstore.google.com/detail/make-github-pages-full-wi/dfpgjcidmobcpaoolhgchdcmdgenbaoa
简介 Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.
文件大小 5.43 KB
安装次数 123
当前版本 1.0
更新时间 2014-05-27
上架时间 2014-05-27
评分 2.75/5 共4次评分
开发者 https://www.danskingdom.com
付费类型 free
支持的语言 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"
            ]
        }
    ]
}