AI Character for GPT
One click to curate AI chatbot, including ChatGPT, Google Bard to improve AI responses.
AI Character for GPT란 무엇입니까?
AI Character for GPT은(는) AI Character for GPT에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "One click to curate AI chatbot, including ChatGPT, Google Bard to improve AI responses."입니다.
확장 프로그램 스크린샷
AI Character for GPT 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Make AI more useful and accurate (powerful!) by curating their character. This free extension provides an "one click" functionality to curate AI chatbot, including ChatGPT, Google Bard to improve AI responses. Key features: 1. List of preset for commonly used characters 2. Quick search among the characters 3. Add custom characters (similar to GPT builder) Note: you could always edit or tweak the prompt as needed. FAQ 1. [fixed] The AI character button is missing in the chat box? This can usually be resolved by refreshing the page. 2. Does the extension store any user data? No. We do not access user data. Update - 2024/2/8 fix breakage due to Bard's renaming to Gemini - 2024/2/7 fix the need to manually refresh page in new chat session
확장 프로그램 기본 정보
이름 | AI Character for GPT |
ID | daoeioifimkjegafelcaljboknjkkohh |
공식 URL | https://chromewebstore.google.com/detail/ai-character-for-gpt/daoeioifimkjegafelcaljboknjkkohh |
설명 | One click to curate AI chatbot, including ChatGPT, Google Bard to improve AI responses. |
파일 크기 | 402 KB |
설치 횟수 | 65 |
현재 버전 | 2.3 |
최근 업데이트 | 2024-02-09 |
출시 날짜 | 2023-11-05 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | AI Character for GPT |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://www.freeprivacypolicy.com/live/2a563cc6-25e5-410a-b3bb-255de0bc6835 |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "One click to curate AI chatbot, including ChatGPT, Google Bard to improve AI responses.", "version": "2.3", "manifest_version": 3, "name": "AI Character for GPT", "options_page": "options.html", "background": { "service_worker": "background.bundle.js" }, "action": { "default_popup": "popup.html", "default_icon": "icon-32.png" }, "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*", "https:\/\/bard.google.com\/*", "https:\/\/gemini.google.com\/*", "https:\/\/chat.openai.com\/", "https:\/\/bard.google.com\/", "https:\/\/gemini.google.com\/" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ] } ], "devtools_page": "devtools.html", "web_accessible_resources": [ { "resources": [ "content.styles.css", "icon-16.png", "icon-32.png", "icon-48.png", "icon-128.png" ], "matches": [] } ] } |