Make GitHub Pages Full Width
Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.
什麼是Make GitHub Pages Full Width?
Make GitHub Pages Full Width是由https://www.danskingdom.com開發的Chrome擴展程式,該擴展的主要功能是“Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.”。
擴展截圖
下載Make GitHub Pages Full Width擴展crx文件
下載Make GitHub Pages Full Width擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Makes the GitHub Pull Request, Commit, and Blob pages span the full width of your browser, rather than maxing out at the default ~900 pixels. This makes viewing code on GitHub much easier, as most developers have widescreen monitors. If the page fails to expand, simply refresh the page.
擴展基本資訊
名稱 | Make GitHub Pages Full Width |
ID | dfpgjcidmobcpaoolhgchdcmdgenbaoa |
官方網址 | https://chromewebstore.google.com/detail/make-github-pages-full-wi/dfpgjcidmobcpaoolhgchdcmdgenbaoa |
簡介 | Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser. |
檔案大小 | 5.43 KB |
安裝次數 | 123 |
目前版本 | 1.0 |
更新時間 | 2014-05-27 |
上架時間 | 2014-05-27 |
評分 | 2.75/5 共 4 次評分 |
開發者 | https://www.danskingdom.com |
付費類型 | free |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Make GitHub Pages Full Width", "description": "Makes the GitHub Pull Request, Commit, and Blob pages span the full width of the browser.", "version": "1.0", "icons": { "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/pull\/*\/files*", "https:\/\/github.com\/*\/commit\/*", "https:\/\/github.com\/*\/blob\/*" ], "js": [ "MakeGitHubPullRequestCommitAndBlobPagesFullWidth.user.js" ] } ] } |