OpenAI copy prompts and others to clipboard
OpenAI copy prompts and others to clipboard
什麼是OpenAI copy prompts and others to clipboard?
OpenAI copy prompts and others to clipboard是由saikat guha開發的Chrome擴展程式,該擴展的主要功能是“OpenAI copy prompts and others to clipboard”。
擴展截圖
下載OpenAI copy prompts and others to clipboard擴展crx文件
下載OpenAI copy prompts and others to clipboard擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | OpenAI copy prompts and others to clipboard |
ID | idcfjfbdfbeddfjgjloomfpaddfehkkf |
官方網址 | https://chromewebstore.google.com/detail/openai-copy-prompts-and-o/idcfjfbdfbeddfjgjloomfpaddfehkkf |
簡介 | OpenAI copy prompts and others to clipboard |
檔案大小 | 4.15 KB |
安裝次數 | 261 |
目前版本 | 0.1.0 |
更新時間 | 2020-08-01 |
上架時間 | 2020-07-31 |
評分 | 1.00/5 共 1 次評分 |
開發者 | saikat guha |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/sktguha/openAIExt |
說明頁面URL | https://github.com/sktguha/openAIExt/issues/new |
支援的語言 | 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" } } } } |