OpenAI copy prompts and others to clipboard
OpenAI copy prompts and others to clipboard
Vad är OpenAI copy prompts and others to clipboard?
OpenAI copy prompts and others to clipboard är en Chrome-tillägg utvecklad av saikat guha, och dess huvudfunktion är "OpenAI copy prompts and others to clipboard".
Tilläggsskärmbilder
Ladda ner OpenAI copy prompts and others to clipboard-förlängningens CRX-fil
Ladda ner OpenAI copy prompts and others to clipboard-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | OpenAI copy prompts and others to clipboard |
ID | idcfjfbdfbeddfjgjloomfpaddfehkkf |
Officiell webbadress | https://chromewebstore.google.com/detail/openai-copy-prompts-and-o/idcfjfbdfbeddfjgjloomfpaddfehkkf |
Beskrivning | OpenAI copy prompts and others to clipboard |
Filstorlek | 4.15 KB |
Antal Installationer | 261 |
Aktuell Version | 0.1.0 |
Senast Uppdaterad | 2020-08-01 |
Publiceringsdatum | 2020-07-31 |
Betyg | 1.00/5 Totalt 1 Betyg |
Utvecklare | saikat guha |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/sktguha/openAIExt |
Hjälpsida URL | https://github.com/sktguha/openAIExt/issues/new |
Stödda Språk | 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" } } } } |