Widescreen for GitHub
Toggle the width of GitHub with a click
什么是Widescreen for GitHub?
Widescreen for GitHub是由Søren Louv-Jansen开发的Chrome扩展程序,该扩展的主要功能是“Toggle the width of GitHub with a click”。
扩展截图
下载Widescreen for GitHub扩展crx文件
下载Widescreen for GitHub扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Often the lines of code on Github are too long to fit within the fixed 920px width. This extension will take full advantage of your screen and show the code in 100% width! It works for all content on Github: PRs, commits, Gists, etc. It is easy to toggle the width on/off whenever you need it - it even comes with a nice transition. Bugs: https://github.com/sqren/github-widescreen/issues Fork: https://github.com/sqren/github-widescreen
扩展基本信息
名称 | Widescreen for GitHub |
ID | elikdceclccjilahimjfceoalhdbndan |
官方URL | https://chromewebstore.google.com/detail/widescreen-for-github/elikdceclccjilahimjfceoalhdbndan |
简介 | Toggle the width of GitHub with a click |
文件大小 | 1.94 MB |
安装次数 | 2,604 |
当前版本 | 0.7.5 |
更新时间 | 2020-11-10 |
上架时间 | 2020-07-02 |
评分 | 4.21/5 共24次评分 |
开发者 | Søren Louv-Jansen |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/sqren/github-widescreen |
帮助页面URL | https://github.com/sqren/github-widescreen |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Widescreen for GitHub", "short_name": "Widescreen for Github", "description": "Toggle the width of GitHub with a click", "version": "0.7.5", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "permissions": [ "https:\/\/github.com\/*", "storage" ], "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" } }, "background": { "scripts": [ "background-scripts.js" ] }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/*.github.com\/*" ], "js": [ "content-scripts.js" ], "css": [ "content-styles.css" ] } ] } |