Github code folding
Add code folding functionality on github for code indented using 2 spaces
Github code foldingとは何ですか?
Github code foldingはRyan Harkinsによって開発されたChromeの拡張機能で、その主な機能は「Add code folding functionality on github for code indented using 2 spaces」です。
拡張機能のスクリーンショット
Github code folding拡張機能のCRXファイルをダウンロード
Github code folding拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
拡張機能の基本情報
| 名前 | |
| ID | iokmjnihlfnchffcmjihafillepmhogk |
| 公式URL | https://chromewebstore.google.com/detail/github-code-folding/iokmjnihlfnchffcmjihafillepmhogk |
| 説明 | Add code folding functionality on github for code indented using 2 spaces |
| ファイルサイズ | 14.7 KB |
| インストール数 | 41 |
| 現在のバージョン | 0.0.1 |
| 最終更新日 | 2015-05-23 |
| 公開日 | 2015-05-23 |
| 評価 | 3.00/5 合計 2 レビュー |
| 開発者 | Ryan Harkins |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Github code folding",
"version": "0.0.1",
"manifest_version": 2,
"description": "Add code folding functionality on github for code indented using 2 spaces",
"homepage_url": "http:\/\/github.com",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_locale": "en",
"permissions": [
"https:\/\/github.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"css": [
"src\/inject\/inject.css"
],
"js": [
"src\/inject\/inject.js"
]
}
]
} | |