OpenAi Playground Regex

Allow formatting on Playground with regex

什么是OpenAi Playground Regex?

OpenAi Playground Regex是由lgsp.dev开发的Chrome扩展程序,该扩展的主要功能是“Allow formatting on Playground with regex”。

扩展截图

screenshot

下载OpenAi Playground Regex扩展crx文件

下载OpenAi Playground Regex扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 OpenAi Playground Regex OpenAi Playground Regex
ID oimbbikjmbpamdloglajlpfpiknmogpf
官方URL https://chromewebstore.google.com/detail/openai-playground-regex/oimbbikjmbpamdloglajlpfpiknmogpf
简介 Allow formatting on Playground with regex
文件大小 15.23 KB
安装次数 228
当前版本 1.0
更新时间 2022-12-26
上架时间 2022-12-06
评分 5.00/5 共3次评分
开发者 lgsp.dev
电子邮箱 [email protected]
付费类型 free
支持的语言 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*"
            ]
        }
    ]
}