PowerToys for OpenAI ™
Productivity tools for OpenAI API's
PowerToys for OpenAI ™란 무엇입니까?
PowerToys for OpenAI ™은(는) I-Technology.NET에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Productivity tools for OpenAI API's"입니다.
확장 프로그램 스크린샷
PowerToys for OpenAI ™ 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
PowerToys for OpenAI ™ provides ChatGPT functionality through the official OpenAI™ API Is intended for power users in the office * Search Companion is integrated with search engine results * Conversation Manager is a full chat interface with history management * Profile manager lets you fine tune the model's response type * See token count * See conversation pricing * Copy results to clipboard * Markdown rendering support * Speech recognition support * ... and more to come ;-) It's optimized for speed, by running locally in your browser (no server costs) The use of this extension will require having your own API key, which can be directly obtained from OpenAI by registering and visiting their developer dashboard. Manage your API keys by visiting: https://platform.openai.com/account/api-keys Pricing is around $0.002 per 750 words, or $1 for the equivalent content of a book of 1000 pages (for the gpt-3.5-turbo model) ----------- Stay tuned: https://twitter.com/itechnologynet
확장 프로그램 기본 정보
이름 | PowerToys for OpenAI ™ |
ID | haijiigmikhgoflpocajpfldmjcfbdpa |
공식 URL | https://chromewebstore.google.com/detail/powertoys-for-openai/haijiigmikhgoflpocajpfldmjcfbdpa |
설명 | Productivity tools for OpenAI API's |
파일 크기 | 1.42 MB |
설치 횟수 | 404 |
현재 버전 | 0.2.5 |
최근 업데이트 | 2023-05-11 |
출시 날짜 | 2023-03-14 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | I-Technology.NET |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/robert-hoffmann/PowerToys4OpenAI |
도움말 페이지 URL | https://github.com/robert-hoffmann/PowerToys4OpenAI/issues |
지원되는 언어 | de,en,fr,tr,es,pt-PT,ru,hi,zh-CN,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_name__", "short_name": "__MSG_shortName__", "description": "__MSG_description__", "default_locale": "en", "icons": { "16": "icons\/icon-16x16.png", "48": "icons\/icon-48x48.png", "128": "icons\/icon-128x128.png" }, "permissions": [ "storage", "notifications" ], "action": { "default_title": "__MSG_name__" }, "options_ui": { "page": "www\/index.html#\/index\/settings\/search", "open_in_tab": true }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ "assets\/content.css" ], "js": [ "content.js" ], "run_at": "document_end" } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self';" }, "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ], "version": "0.2.5" } |