Chat GPT Font Changer

An extension that will allow you to change the default font used in Chat GPT, and separately the font used in code blocks

Chat GPT Font Changer란 무엇입니까?

Chat GPT Font Changer은(는) denno020에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that will allow you to change the default font used in Chat GPT, and separately the font used in code blocks"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Chat GPT Font Changer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extensions makes it incredibly easy for you to change up the look and feel of Chat GPT!
Font's will be applied Chat GPT-wide on your desktop machine.
Further, you can change the font specifically for code blocks, so instead of using a sans-serif or serif for code, you can choose your favourite monospace font.
Choose from any font that you have installed on your machine.                    

확장 프로그램 기본 정보

이름 Chat GPT Font Changer Chat GPT Font Changer
ID opkoflneelcfgfgbfnopmlilmcipjpbc
공식 URL https://chromewebstore.google.com/detail/chat-gpt-font-changer/opkoflneelcfgfgbfnopmlilmcipjpbc
설명 An extension that will allow you to change the default font used in Chat GPT, and separately the font used in code blocks
파일 크기 277 KB
설치 횟수 42
현재 버전 0.0.1
최근 업데이트 2024-01-08
출시 날짜 2024-01-08
평점 5.00/5 총 1 개의 평점
개발자 denno020
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Chat GPT Font Changer",
    "version": "0.0.1",
    "description": "An extension that will allow you to change the default font used in Chat GPT, and separately the font used in code blocks",
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_popup": "src\/pages\/popup\/index.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "scripting",
        "activeTab",
        "fontSettings",
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/js\/*.js",
                "assets\/css\/*.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}