OpenAi Playground Regex
Allow formatting on Playground with regex
Was ist OpenAi Playground Regex?
OpenAi Playground Regex ist eine Chrome-Erweiterung, die von lgsp.dev entwickelt wurde, und ihr Hauptmerkmal ist "Allow formatting on Playground with regex".
Erweiterungsscreenshots
OpenAi Playground Regex-Erweiterungs-CRX-Datei herunterladen
Laden Sie OpenAi Playground Regex-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 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.
Grundlegende Informationen zur Erweiterung
Name | OpenAi Playground Regex |
ID | oimbbikjmbpamdloglajlpfpiknmogpf |
Offizielle URL | https://chromewebstore.google.com/detail/openai-playground-regex/oimbbikjmbpamdloglajlpfpiknmogpf |
Beschreibung | Allow formatting on Playground with regex |
Dateigröße | 15.23 KB |
Installationsanzahl | 228 |
Aktuelle Version | 1.0 |
Letztes Update | 2022-12-26 |
Veröffentlichungsdatum | 2022-12-06 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | lgsp.dev |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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*" ] } ] } |