ChatGPT-theme
让 ChatGPT 页面拥有一个好看的主题
ChatGPT-theme란 무엇입니까?
ChatGPT-theme은(는) 1340449792에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "让 ChatGPT 页面拥有一个好看的主题"입니다.
확장 프로그램 스크린샷
ChatGPT-theme 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
让你的 ChatGPT 拥有一个好看的主题页面,可以定制背景图以及聊天气泡的背景颜色,还能隐藏侧边栏,同时适配了明暗两套主题颜色等,现在还增加在百度页面自动同步搜索功能,需要自己的API key才行
확장 프로그램 기본 정보
이름 | ChatGPT-theme |
ID | pmojhaafcblmlphahlilhlkbbefjaaph |
공식 URL | https://chromewebstore.google.com/detail/chatgpt-theme/pmojhaafcblmlphahlilhlkbbefjaaph |
설명 | 让 ChatGPT 页面拥有一个好看的主题 |
파일 크기 | 134 KB |
설치 횟수 | 224 |
현재 버전 | 1.0.3 |
최근 업데이트 | 2023-03-07 |
출시 날짜 | 2023-02-17 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | 1340449792 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT-theme", "version": "1.0.3", "description": "\u8ba9 ChatGPT \u9875\u9762\u62e5\u6709\u4e00\u4e2a\u597d\u770b\u7684\u4e3b\u9898", "icons": { "64": "images\/logo.png", "128": "images\/logo_grey.png" }, "action": { "default_popup": "popup.html", "default_title": "ChatGPT-theme", "default_icon": { "128": "images\/logo_grey.png" } }, "permissions": [ "tabs", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/chat\/*" ], "css": [ "css\/inject.css" ], "js": [ "js\/inject.js" ] }, { "matches": [ "https:\/\/www.baidu.com\/s*", "https:\/\/www.baidu.com\/" ], "css": [ "css\/github-dark.min.css", "css\/chatgpt.css" ], "js": [ "js\/markdown.js", "js\/highlight.min.js", "js\/chatgpt.js" ] } ], "background": { "service_worker": "background.js", "type": "module" }, "web_accessible_resources": [ { "resources": [ "\/images\/close.png", "\/images\/logo.png" ], "matches": [ "https:\/\/chat.openai.com\/*" ] } ], "author": "Karl_fang" } |