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 |
官方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": [ "*:\/\/*\/*" ] } ] } |