Wide GitHub
Change all GitHub repository and gist pages to be full width and dynamically sized.
什么是Wide GitHub?
Wide GitHub是由xthexder开发的Chrome扩展程序,该扩展的主要功能是“Change all GitHub repository and gist pages to be full width and dynamically sized.”。
扩展截图
下载Wide GitHub扩展crx文件
下载Wide GitHub扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Features: - Read long lines of code without scrolling left to right - See more documentation at once when using large / high-dpi monitors - Easily toggleable for viewing size-dependent docs or wiki pages.
扩展基本信息
名称 | Wide GitHub |
ID | kaalofacklcidaampbokdplbklpeldpj |
官方URL | https://chromewebstore.google.com/detail/wide-github/kaalofacklcidaampbokdplbklpeldpj |
简介 | Change all GitHub repository and gist pages to be full width and dynamically sized. |
文件大小 | 17.76 KB |
安装次数 | 7,602 |
当前版本 | 1.6.5 MV3 |
更新时间 | 2024-02-07 |
上架时间 | 2020-06-26 |
评分 | 4.55/5 共66次评分 |
开发者 | xthexder |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/xthexder/wide-github |
帮助页面URL | https://github.com/xthexder/wide-github/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Wide GitHub", "description": "Change all GitHub repository and gist pages to be full width and dynamically sized.", "version": "1.6.5", "version_name": "1.6.5 MV3", "icons": { "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_icon": "icons\/icon.png", "default_title": "Toggle Wide GitHub" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ], "css": [ "wide-github.css" ], "js": [ "wide-github-toggle.js" ] } ], "background": { "service_worker": "background.js" } } |