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