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”。
擴展截圖
下載Chat GPT Font Changer擴展crx文件
下載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 |
官方網址 | 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": [ "*:\/\/*\/*" ] } ] } |