OpenAi Playground Regex
Allow formatting on Playground with regex
Cos'è OpenAi Playground Regex?
OpenAi Playground Regex è un'estensione di Chrome sviluppata da lgsp.dev, e la sua funzione principale è "Allow formatting on Playground with regex".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione OpenAi Playground Regex
Scarica i file di estensione OpenAi Playground Regex 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 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.
Informazioni di Base sull'Estensione
Nome | OpenAi Playground Regex |
ID | oimbbikjmbpamdloglajlpfpiknmogpf |
URL Ufficiale | https://chromewebstore.google.com/detail/openai-playground-regex/oimbbikjmbpamdloglajlpfpiknmogpf |
Descrizione | Allow formatting on Playground with regex |
Dimensione del File | 15.23 KB |
Conteggio Installazioni | 228 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2022-12-26 |
Data di Pubblicazione | 2022-12-06 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | lgsp.dev |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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*" ] } ] } |