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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย denno020 และคุณลักษณะหลักของมันคือ "An extension that will allow you to change the default font used in Chat GPT, and separately the font used in code blocks"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chat GPT Font Changer
ดาวน์โหลดไฟล์ส่วนขยาย Chat GPT Font Changer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
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": [ "*:\/\/*\/*" ] } ] } |