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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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" ] } ] } |