OpenAi Playground Regex

Allow formatting on Playground with regex

O que é OpenAi Playground Regex?

OpenAi Playground Regex é uma extensão do Chrome desenvolvida por lgsp.dev, e sua principal característica é "Allow formatting on Playground with regex".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão OpenAi Playground Regex

Baixe arquivos de extensão OpenAi Playground Regex no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome OpenAi Playground Regex OpenAi Playground Regex
ID oimbbikjmbpamdloglajlpfpiknmogpf
URL Oficial https://chromewebstore.google.com/detail/openai-playground-regex/oimbbikjmbpamdloglajlpfpiknmogpf
Descrição Allow formatting on Playground with regex
Tamanho do Arquivo 15.23 KB
Contagem de Instalações 228
Versão Atual 1.0
Última Atualização 2022-12-26
Data de Publicação 2022-12-06
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor lgsp.dev
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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*"
            ]
        }
    ]
}