GitHub Code Folding
Enable code folding when viewing files in GitHub.
GitHub Code Foldingとは何ですか?
GitHub Code Foldingはnoam3127によって開発されたChromeの拡張機能で、その主な機能は「Enable code folding when viewing files in GitHub.」です。
拡張機能のスクリーンショット
GitHub Code Folding拡張機能のCRXファイルをダウンロード
GitHub Code Folding拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Code folding - the ability to selectively hide and display sections of a code - is an invaluable feature in many text editors and IDEs. Now, developers can utilize that same style code-folding while poring over source code on the web in GitHub. Works for any type of indentation, spaces or tabs.
--- CHANGELOG ---
v0.3.3
- handle multi-level nested blocks
v0.3.2
- don't expand previously collapsed inner block when expanding outer block
- styling fix that prevented copying code
v0.3.1
- remove host permission
v0.3.0
- migrate manifest to v3
- update permissions
- fix styling
v0.2.0
- fix to use CSS selectors from updated github markup
- run on bbgithub
v0.1.1
- fix missing css file
v0.1.0
- remove jQuery dependency
- use event page instead of permanent background 拡張機能の基本情報
| 名前 | |
| ID | lefcpjbffalgdcdgidjdnmabfenecjdf |
| 公式URL | https://chromewebstore.google.com/detail/github-code-folding/lefcpjbffalgdcdgidjdnmabfenecjdf |
| 説明 | Enable code folding when viewing files in GitHub. |
| ファイルサイズ | 1.06 MB |
| インストール数 | 3,328 |
| 現在のバージョン | 0.3.3 |
| 最終更新日 | 2022-07-14 |
| 公開日 | 2019-04-10 |
| 評価 | 5.00/5 合計 16 レビュー |
| 開発者 | noam3127 |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/noam3127/github-code-folding |
| ヘルプページのURL | https://github.com/noam3127/github-code-folding/issues |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GitHub Code Folding",
"version": "0.3.3",
"description": "Enable code folding when viewing files in GitHub.",
"homepage_url": "https:\/\/github.com\/noam3127\/github-code-folding",
"manifest_version": 3,
"minimum_chrome_version": "88",
"author": "Noam Lustiger",
"short_name": "Github Code Folding",
"permissions": [
"scripting"
],
"host_permissions": [
"*:\/\/github.com\/*"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"icons": {
"128": "images\/icon-128.png"
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"*:\/\/github.com\/*"
],
"css": [
"style.css"
]
}
]
} | |