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 |
官方網址 | 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" } } |