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 là gì?

Chat GPT Font Changer là một tiện ích mở rộng Chrome được phát triển bởi denno020, và tính năng chính của nó là "An extension that will allow you to change the default font used in Chat GPT, and separately the font used in code blocks".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Chat GPT Font Changer

Tải xuống các tệp mở rộng Chat GPT Font Changer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Chat GPT Font Changer Chat GPT Font Changer
ID opkoflneelcfgfgbfnopmlilmcipjpbc
URL Chính Thức https://chromewebstore.google.com/detail/chat-gpt-font-changer/opkoflneelcfgfgbfnopmlilmcipjpbc
Mô tả An extension that will allow you to change the default font used in Chat GPT, and separately the font used in code blocks
Kích Thước Tệp 277 KB
Số Lần Cài Đặt 42
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2024-01-08
Ngày Phát Hành 2024-01-08
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển denno020
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}