Wide GitHub
Change all GitHub repository and gist pages to be full width and dynamically sized.
What is Wide GitHub?
Wide GitHub is a Chrome extension developed by xthexder, and its main feature is "Change all GitHub repository and gist pages to be full width and dynamically sized.".
Extension Screenshots
Download Wide GitHub Extension CRX File
Download Wide GitHub extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Wide GitHub |
ID | kaalofacklcidaampbokdplbklpeldpj |
Official URL | https://chromewebstore.google.com/detail/wide-github/kaalofacklcidaampbokdplbklpeldpj |
Description | Change all GitHub repository and gist pages to be full width and dynamically sized. |
File Size | 17.76 KB |
Installation Count | 7,602 |
Current Version | 1.6.5 MV3 |
Last Updated | 2024-02-07 |
Publish Date | 2020-06-26 |
Rating | 4.55/5 Total 66 Ratings |
Developer | xthexder |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/xthexder/wide-github |
Help Page URL | https://github.com/xthexder/wide-github/issues |
Supported Languages | 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" } } |