OpenAI copy prompts and others to clipboard
OpenAI copy prompts and others to clipboard
Qu'est-ce que OpenAI copy prompts and others to clipboard ?
OpenAI copy prompts and others to clipboard est une extension Chrome développée par saikat guha, et sa fonction principale est "OpenAI copy prompts and others to clipboard".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension OpenAI copy prompts and others to clipboard
Téléchargez les fichiers d'extension OpenAI copy prompts and others to clipboard au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | OpenAI copy prompts and others to clipboard |
ID | idcfjfbdfbeddfjgjloomfpaddfehkkf |
URL Officiel | https://chromewebstore.google.com/detail/openai-copy-prompts-and-o/idcfjfbdfbeddfjgjloomfpaddfehkkf |
Description | OpenAI copy prompts and others to clipboard |
Taille du Fichier | 4.15 KB |
Nombre d'Installations | 261 |
Version Actuelle | 0.1.0 |
Dernière Mise à Jour | 2020-08-01 |
Date de Publication | 2020-07-31 |
Évaluation | 1.00/5 Total 1 Évaluations |
Développeur | saikat guha |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/sktguha/openAIExt |
URL de la Page d'Aide | https://github.com/sktguha/openAIExt/issues/new |
Langues Prises en Charge | 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" } } } } |