Github Code Font Changer

Change and customize the boring GitHub code viewer font

Github Code Font Changer란 무엇입니까?

Github Code Font Changer은(는) AmraniCh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Change and customize the boring GitHub code viewer font"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Github Code Font Changer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Unhappy with the boring GitHub code viewer font? You're looking for a way to change it without affecting other website's fonts? Well, this extension is made for you raised_hands.

Features:

- As of Version 3, changing font size is supported.
- As of version 2, you can use the fonts installed in your local machine alongside the fonts provided by the extension.
- Change the font weight for the selected font family.
- Hide the indentation guides.

Available fonts :

-   Anonymous Mono.
-   Atma.
-   Courier Prime.
-   Fira Code.
-   Inconsolata.
-   IBM Plex Mono.
-   JetBrains Mono.
-   Oxygen Mono.
-   PT Mono.
-   Roboto Mono.
-   Share Tech Mono.
-   Source Code Pro.
-   Space Mono.
-   Ubuntu Mono.                    

확장 프로그램 기본 정보

이름 Github Code Font Changer Github Code Font Changer
ID jmbophfanmlfkloliildahlpnlbojhfi
공식 URL https://chromewebstore.google.com/detail/github-code-font-changer/jmbophfanmlfkloliildahlpnlbojhfi
설명 Change and customize the boring GitHub code viewer font
파일 크기 62.46 KB
설치 횟수 250
현재 버전 3.0
최근 업데이트 2024-02-09
출시 날짜 2021-10-18
평점 5.00/5 총 2 개의 평점
개발자 AmraniCh
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/AmraniCh/github-code-font-changer
도움말 페이지 URL https://github.com/AmraniCh/github-code-font-changer
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Code Font Changer",
    "description": "Change and customize the boring GitHub code viewer font",
    "version": "3.0",
    "icons": {
        "16": "images\/logo\/V2\/icon16.png",
        "48": "images\/logo\/V2\/icon48.png",
        "128": "images\/logo\/V2\/icon128.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.github.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "https:\/\/*.github.com\/*"
    ]
}