OpenAi Playground Regex
Allow formatting on Playground with regex
Qu'est-ce que OpenAi Playground Regex ?
OpenAi Playground Regex est une extension Chrome développée par lgsp.dev, et sa fonction principale est "Allow formatting on Playground with regex".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension OpenAi Playground Regex
Téléchargez les fichiers d'extension OpenAi Playground Regex 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 extension allows users to use Regular expressions in the OpenAi playground website. You can add multiple expressions which all format the text at the same time. After applying the regex you can copy the output text and paste it into the playground.
Informations de Base sur l'Extension
Nom | OpenAi Playground Regex |
ID | oimbbikjmbpamdloglajlpfpiknmogpf |
URL Officiel | https://chromewebstore.google.com/detail/openai-playground-regex/oimbbikjmbpamdloglajlpfpiknmogpf |
Description | Allow formatting on Playground with regex |
Taille du Fichier | 15.23 KB |
Nombre d'Installations | 228 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2022-12-26 |
Date de Publication | 2022-12-06 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | lgsp.dev |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "OpenAi Playground Regex", "description": "Allow formatting on Playground with regex", "version": "1.0", "manifest_version": 3, "icons": { "16": "\/images\/icon16.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" }, "content_scripts": [ { "js": [ "contentScripts.js" ], "css": [ "index.css" ], "run_at": "document_end", "matches": [ "https:\/\/beta.openai.com\/playground*" ] } ] } |