OpenAi Playground Regex
Allow formatting on Playground with regex
Co to jest OpenAi Playground Regex?
OpenAi Playground Regex to rozszerzenie Chrome opracowane przez lgsp.dev, a jego główną funkcją jest „Allow formatting on Playground with regex”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia OpenAi Playground Regex
Pobierz pliki rozszerzeń OpenAi Playground Regex w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | OpenAi Playground Regex |
ID | oimbbikjmbpamdloglajlpfpiknmogpf |
Oficjalny URL | https://chromewebstore.google.com/detail/openai-playground-regex/oimbbikjmbpamdloglajlpfpiknmogpf |
Opis | Allow formatting on Playground with regex |
Rozmiar pliku | 15.23 KB |
Liczba instalacji | 228 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2022-12-26 |
Data Publikacji | 2022-12-06 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | lgsp.dev |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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*" ] } ] } |