OpenAI copy prompts and others to clipboard
OpenAI copy prompts and others to clipboard
Was ist OpenAI copy prompts and others to clipboard?
OpenAI copy prompts and others to clipboard ist eine Chrome-Erweiterung, die von saikat guha entwickelt wurde, und ihr Hauptmerkmal ist "OpenAI copy prompts and others to clipboard".
Erweiterungsscreenshots
OpenAI copy prompts and others to clipboard-Erweiterungs-CRX-Datei herunterladen
Laden Sie OpenAI copy prompts and others to clipboard-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | OpenAI copy prompts and others to clipboard |
ID | idcfjfbdfbeddfjgjloomfpaddfehkkf |
Offizielle URL | https://chromewebstore.google.com/detail/openai-copy-prompts-and-o/idcfjfbdfbeddfjgjloomfpaddfehkkf |
Beschreibung | OpenAI copy prompts and others to clipboard |
Dateigröße | 4.15 KB |
Installationsanzahl | 261 |
Aktuelle Version | 0.1.0 |
Letztes Update | 2020-08-01 |
Veröffentlichungsdatum | 2020-07-31 |
Bewertung | 1.00/5 Insgesamt 1 Bewertungen |
Entwickler | saikat guha |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/sktguha/openAIExt |
Hilfeseite URL | https://github.com/sktguha/openAIExt/issues/new |
Unterstützte Sprachen | 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" } } } } |