OpenAI copy prompts and others to clipboard
OpenAI copy prompts and others to clipboard
Cos'è OpenAI copy prompts and others to clipboard?
OpenAI copy prompts and others to clipboard è un'estensione di Chrome sviluppata da saikat guha, e la sua funzione principale è "OpenAI copy prompts and others to clipboard".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione OpenAI copy prompts and others to clipboard
Scarica i file di estensione OpenAI copy prompts and others to clipboard in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | OpenAI copy prompts and others to clipboard |
ID | idcfjfbdfbeddfjgjloomfpaddfehkkf |
URL Ufficiale | https://chromewebstore.google.com/detail/openai-copy-prompts-and-o/idcfjfbdfbeddfjgjloomfpaddfehkkf |
Descrizione | OpenAI copy prompts and others to clipboard |
Dimensione del File | 4.15 KB |
Conteggio Installazioni | 261 |
Versione Corrente | 0.1.0 |
Ultimo Aggiornamento | 2020-08-01 |
Data di Pubblicazione | 2020-07-31 |
Valutazione | 1.00/5 Totale 1 Valutazioni |
Sviluppatore | saikat guha |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/sktguha/openAIExt |
URL della Pagina di Aiuto | https://github.com/sktguha/openAIExt/issues/new |
Lingue Supportate | 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" } } } } |