OpenAI copy prompts and others to clipboard
OpenAI copy prompts and others to clipboard
OpenAI copy prompts and others to clipboard là gì?
OpenAI copy prompts and others to clipboard là một tiện ích mở rộng Chrome được phát triển bởi saikat guha, và tính năng chính của nó là "OpenAI copy prompts and others to clipboard".
Ả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 OpenAI copy prompts and others to clipboard
Tải xuống các tệp mở rộng OpenAI copy prompts and others to clipboard 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 simple extension allows you to copy to clipboard, the prompts and other settings that you have made on the page https://beta.openai.com/playground, so that you can share those easily with others. On installing the extension a button will appear on the page(https://beta.openai.com/playground) called "Copy Prompt and other settings to clipboard", clicking it will copy the prompts and other settings data to the clipboard
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | OpenAI copy prompts and others to clipboard |
ID | idcfjfbdfbeddfjgjloomfpaddfehkkf |
URL Chính Thức | https://chromewebstore.google.com/detail/openai-copy-prompts-and-o/idcfjfbdfbeddfjgjloomfpaddfehkkf |
Mô tả | OpenAI copy prompts and others to clipboard |
Kích Thước Tệp | 4.15 KB |
Số Lần Cài Đặt | 261 |
Phiên Bản Hiện Tại | 0.1.0 |
Cập Nhật Lần Cuối | 2020-08-01 |
Ngày Phát Hành | 2020-07-31 |
Đánh Giá | 1.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | saikat guha |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/sktguha/openAIExt |
URL Trang Trợ Giúp | https://github.com/sktguha/openAIExt/issues/new |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "OpenAI copy prompts and others to clipboard", "short_name": "openAICopyToClip", "version": "0.1.0", "description": "OpenAI copy prompts and others to clipboard", "browser_action": [], "content_scripts": [ { "matches": [ "https:\/\/beta.openai.com\/playground\/*", "http:\/\/beta.openai.com\/playground\/*" ], "run_at": "document_end", "js": [ "script.js" ] } ], "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+E", "mac": "Command+E", "chromeos": "Ctrl+E", "linux": "Ctrl+E" } } } } |