GitHub EditorConfig
EditorConfig support for GitHub
GitHub EditorConfig란 무엇입니까?
GitHub EditorConfig은(는) Ingvar Stepanyan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "EditorConfig support for GitHub"입니다.
확장 프로그램 스크린샷
GitHub EditorConfig 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension provides EditorConfig support for GitHub. It looks for .editorconfig files in the repository the current file belongs to, and applies found settings to code viewer and editor. Branch is always taken into account. You can also set default editorconfig that will be used for repos without custom one. By default, it fixes tab size to 4 spaces per tab for all files but Ruby (2 spaces per tab).
확장 프로그램 기본 정보
이름 | GitHub EditorConfig |
ID | bppnolhdpdfmmpeefopdbpmabdpoefjh |
공식 URL | https://chromewebstore.google.com/detail/github-editorconfig/bppnolhdpdfmmpeefopdbpmabdpoefjh |
설명 | EditorConfig support for GitHub |
파일 크기 | 83.14 KB |
설치 횟수 | 364 |
현재 버전 | 1.1.0 |
최근 업데이트 | 2014-10-30 |
출시 날짜 | 2014-10-30 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | Ingvar Stepanyan |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://rreverser.com/gh-github-editorconfig/ |
도움말 페이지 URL | https://github.com/RReverser/github-editorconfig |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "all_frames": true, "run_at": "document_start", "js": [ "includes\/content.js" ] } ], "name": "GitHub EditorConfig", "icons": { "128": "icons\/icon128.png", "48": "icons\/icon48.png", "16": "icons\/button.png" }, "web_accessible_resources": [ "res\/*", "assets\/*", "icons\/*" ], "description": "EditorConfig support for GitHub", "background": { "page": "background.html" }, "homepage_url": "https:\/\/github.com\/RReverser\/github-editorconfig", "version": "1.1.0", "options_page": "options.html", "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "tabs", "contextMenus", "webNavigation", "https:\/\/raw.githubusercontent.com\/*" ] } |