Tab Size on GitHub
Make tab indented code more readable by forcing the tab size to 4 instead of 8
Tab Size on GitHubとは何ですか?
Tab Size on GitHubはSindre Sorhusによって開発されたChromeの拡張機能で、その主な機能は「Make tab indented code more readable by forcing the tab size to 4 instead of 8」です。
拡張機能のスクリーンショット
Tab Size on GitHub拡張機能のCRXファイルをダウンロード
Tab Size on GitHub拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Update: GitHub now has a tab size setting: https://github.blog/changelog/2021-09-21-tab-size-rendering-preference/ By default, in browsers, the tab character takes up 8 spaces in width. This makes tab-indented code hard to read. GitHub could have easily overridden this with a more reasonable number like 4, but they have chosen not to. Hence why this extension exists. It sets the tab width to 4.
拡張機能の基本情報
名前 | Tab Size on GitHub |
ID | ofjbgncegkdemndciafljngjbdpfmbkn |
公式URL | https://chromewebstore.google.com/detail/tab-size-on-github/ofjbgncegkdemndciafljngjbdpfmbkn |
説明 | Make tab indented code more readable by forcing the tab size to 4 instead of 8 |
ファイルサイズ | 5.09 KB |
インストール数 | 2,002 |
現在のバージョン | 1.2.0 |
最終更新日 | 2021-09-26 |
公開日 | 2018-09-24 |
評価 | 4.96/5 合計 23 レビュー |
開発者 | Sindre Sorhus |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/sindresorhus/tab-size-on-github |
ヘルプページのURL | https://github.com/sindresorhus/tab-size-on-github/issues |
プライバシーポリシーページのURL | https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Size on GitHub", "version": "1.2.0", "description": "Make tab indented code more readable by forcing the tab size to 4 instead of 8", "homepage_url": "https:\/\/github.com\/sindresorhus\/tab-size-on-github", "manifest_version": 2, "minimum_chrome_version": "36", "icons": { "128": "icon.png" }, "permissions": [ "https:\/\/github.com\/*\/*", "https:\/\/gist.github.com\/*\/*", "https:\/\/raw.githubusercontent.com\/*\/*" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/github.com\/*\/*", "https:\/\/gist.github.com\/*\/*", "https:\/\/raw.githubusercontent.com\/*\/*" ], "css": [ "content.css" ] } ] } |