Full Width Github
Always use full-width layout on Github. Great for reading and presenting code. This extension is not affiliated with Github.
什么是Full Width Github?
Full Width Github是由Jared Tong开发的Chrome扩展程序,该扩展的主要功能是“Always use full-width layout on Github. Great for reading and presenting code. This extension is not affiliated with Github.”。
扩展截图
下载Full Width Github扩展crx文件
下载Full Width Github扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Always use full-width layout on Github. Great for reading and presenting code. This extension is not affiliated with Github.
扩展基本信息
名称 | Full Width Github |
ID | fpmeepocimocneobfkndponblfpecdkj |
官方URL | https://chromewebstore.google.com/detail/full-width-github/fpmeepocimocneobfkndponblfpecdkj |
简介 | Always use full-width layout on Github. Great for reading and presenting code. This extension is not affiliated with Github. |
文件大小 | 316 KB |
安装次数 | 23 |
当前版本 | 0.0.1 |
更新时间 | 2017-03-04 |
上架时间 | 2017-03-04 |
评分 | 5.00/5 共2次评分 |
开发者 | Jared Tong |
付费类型 | free |
帮助页面URL | https://github.com/tongrhj/full_width_github/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Full Width Github", "version": "0.0.1", "description": "Always use full-width layout on Github. Great for reading and presenting code. This extension is not affiliated with Github.", "browser_action": { "default_icon": "github48.png", "default_title": "Wider Github" }, "icons": { "16": "github16.png", "48": "github48.png", "128": "github128.png" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/github.com\/*", "https:\/\/*.github.com\/*" ] } ] } |