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 |
公式URL | 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 |
Eメール | [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" ] } ] } |