OpenAi Playground Regex
Allow formatting on Playground with regex
Wat is OpenAi Playground Regex?
OpenAi Playground Regex is een Chrome-extensie ontwikkeld door lgsp.dev, en de belangrijkste functie is "Allow formatting on Playground with regex".
Extensie Screenshots
Download het CRX-bestand van de extensie OpenAi Playground Regex
Download OpenAi Playground Regex-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | OpenAi Playground Regex |
ID | oimbbikjmbpamdloglajlpfpiknmogpf |
Officiële URL | https://chromewebstore.google.com/detail/openai-playground-regex/oimbbikjmbpamdloglajlpfpiknmogpf |
Beschrijving | Allow formatting on Playground with regex |
Bestandsgrootte | 15.23 KB |
Aantal Installaties | 228 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2022-12-26 |
Publicatiedatum | 2022-12-06 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | lgsp.dev |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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*" ] } ] } |