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. 拡張機能の基本情報
| 名前 | |
| ID | kaalofacklcidaampbokdplbklpeldpj |
| 公式URL | 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 |
| Eメール | [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"
}
} | |