Spellbook for OpenAI Chat
Quickly cast a spell in chat
Spellbook for OpenAI Chatとは何ですか?
Spellbook for OpenAI Chatはmis101247によって開発されたChromeの拡張機能で、その主な機能は「Quickly cast a spell in chat」です。
拡張機能のスクリーンショット
Spellbook for OpenAI Chat拡張機能のCRXファイルをダウンロード
Spellbook for OpenAI Chat拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This tool helps users quickly send selected text to ChatGPT for processing. Users simply right-click on the selected text, choose Send to ChatGPT, and ChatGPT will process the text and return the results. This tool saves users time on typing and searching for information, while also improving their work efficiency. If you have any questions or feedback, please feel free to contact us. We are happy to assist you.
拡張機能の基本情報
名前 | Spellbook for OpenAI Chat |
ID | dkjphoginefnolhlimdopaflffoddffo |
公式URL | https://chromewebstore.google.com/detail/spellbook-for-openai-chat/dkjphoginefnolhlimdopaflffoddffo |
説明 | Quickly cast a spell in chat |
ファイルサイズ | 136 KB |
インストール数 | 171 |
現在のバージョン | 0.1.4 |
最終更新日 | 2023-04-13 |
公開日 | 2023-03-07 |
開発者 | mis101247 |
Eメール | [email protected] |
支払い方法 | free |
プライバシーポリシーページのURL | https://mis101247.github.io/chromeWebStore/privacyPolicy2023.html |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Spellbook for OpenAI Chat", "description": "Quickly cast a spell in chat", "version": "0.1.4", "permissions": [ "contextMenus", "storage" ], "background": { "service_worker": "background.js", "type": "module" }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "action": { "default_popup": "popup\/index.html" }, "content_scripts": [ { "js": [ "openai\/action.js" ], "matches": [ "https:\/\/chat.openai.com\/*" ] } ] } |