Spellbook for OpenAI Chat
Quickly cast a spell in chat
Spellbook for OpenAI Chat là gì?
Spellbook for OpenAI Chat là một tiện ích mở rộng Chrome được phát triển bởi mis101247, và tính năng chính của nó là "Quickly cast a spell in chat".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Spellbook for OpenAI Chat
Tải xuống các tệp mở rộng Spellbook for OpenAI Chat dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Spellbook for OpenAI Chat |
ID | dkjphoginefnolhlimdopaflffoddffo |
URL Chính Thức | https://chromewebstore.google.com/detail/spellbook-for-openai-chat/dkjphoginefnolhlimdopaflffoddffo |
Mô tả | Quickly cast a spell in chat |
Kích Thước Tệp | 136 KB |
Số Lần Cài Đặt | 171 |
Phiên Bản Hiện Tại | 0.1.4 |
Cập Nhật Lần Cuối | 2023-04-13 |
Ngày Phát Hành | 2023-03-07 |
Nhà Phát Triển | mis101247 |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://mis101247.github.io/chromeWebStore/privacyPolicy2023.html |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |