GitHub Custom Tab Size
Make tab indented code more readable by allowing you to set a custom tab size
GitHub Custom Tab Sizeとは何ですか?
GitHub Custom Tab Sizeはlukechildsによって開発されたChromeの拡張機能で、その主な機能は「Make tab indented code more readable by allowing you to set a custom tab size」です。
拡張機能のスクリーンショット
GitHub Custom Tab Size拡張機能のCRXファイルをダウンロード
GitHub Custom Tab Size拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Set custom tab size for code view on GitHub.com. The tab size setting is synced across all Chrome browsers you're logged into. 拡張機能の基本情報
| 名前 | |
| ID | jcjfkmdkcaopkioccnpbhiemfcmpnghe |
| 公式URL | https://chromewebstore.google.com/detail/github-custom-tab-size/jcjfkmdkcaopkioccnpbhiemfcmpnghe |
| 説明 | Make tab indented code more readable by allowing you to set a custom tab size |
| ファイルサイズ | 22.35 KB |
| インストール数 | 557 |
| 現在のバージョン | 1.1.0 |
| 最終更新日 | 2019-05-06 |
| 公開日 | 2019-05-06 |
| 評価 | 4.30/5 合計 10 レビュー |
| 開発者 | lukechilds |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/lukechilds/github-custom-tab-size |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GitHub Custom Tab Size",
"version": "1.1.0",
"icons": {
"256": "icon.png"
},
"description": "Make tab indented code more readable by allowing you to set a custom tab size",
"homepage_url": "https:\/\/github.com\/lukechilds\/github-custom-tab-size",
"manifest_version": 2,
"minimum_chrome_version": "36",
"browser_action": {
"default_popup": "src\/popup.html"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/github.com\/*\/*",
"https:\/\/gist.github.com\/*\/*"
],
"js": [
"src\/content.js"
]
}
]
} | |