Render Whitespace on GitHub

Renders spaces as · and tabs as → in all the code on GitHub.

Render Whitespace on GitHub란 무엇입니까?

Render Whitespace on GitHub은(는) glebm에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Renders spaces as · and tabs as → in all the code on GitHub."입니다.

확장 프로그램 스크린샷

screenshot

Render Whitespace on GitHub 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Are they tabs? Are they spaces? How many?
Never wonder again!

Add this extension to see the whitespace on GitHub.                    

확장 프로그램 기본 정보

이름 Render Whitespace on GitHub Render Whitespace on GitHub
ID ifdbipohclgnokjgpejhnbjdlgjkkhom
공식 URL https://chromewebstore.google.com/detail/render-whitespace-on-gith/ifdbipohclgnokjgpejhnbjdlgjkkhom
설명 Renders spaces as · and tabs as → in all the code on GitHub.
파일 크기 9.93 KB
설치 횟수 586
현재 버전 1.3.12
최근 업데이트 2018-08-25
출시 날짜 2018-08-25
평점 4.00/5 총 6 개의 평점
개발자 glebm
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/glebm/render-whitespace-on-github
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Render Whitespace on GitHub",
    "version": "1.3.12",
    "author": "Gleb Mazovetskiy",
    "content_scripts": [
        {
            "js": [
                "RenderWhitespaceOnGithub.user.js"
            ],
            "matches": [
                "https:\/\/gist.github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ],
    "homepage_url": "https:\/\/github.com\/glebm\/render-whitespace-on-github",
    "description": "Renders spaces as \u00b7 and tabs as \u2192 in all the code on GitHub.",
    "icons": {
        "128": "icon128.png"
    }
}