OpenAi Playground Regex

Allow formatting on Playground with regex

Vad är OpenAi Playground Regex?

OpenAi Playground Regex är en Chrome-tillägg utvecklad av lgsp.dev, och dess huvudfunktion är "Allow formatting on Playground with regex".

Tilläggsskärmbilder

screenshot

Ladda ner OpenAi Playground Regex-förlängningens CRX-fil

Ladda ner OpenAi Playground Regex-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn OpenAi Playground Regex OpenAi Playground Regex
ID oimbbikjmbpamdloglajlpfpiknmogpf
Officiell webbadress https://chromewebstore.google.com/detail/openai-playground-regex/oimbbikjmbpamdloglajlpfpiknmogpf
Beskrivning Allow formatting on Playground with regex
Filstorlek 15.23 KB
Antal Installationer 228
Aktuell Version 1.0
Senast Uppdaterad 2022-12-26
Publiceringsdatum 2022-12-06
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare lgsp.dev
E-post [email protected]
Betalningssätt free
Stödda Språk 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*"
            ]
        }
    ]
}