OpenAi Playground Regex

Allow formatting on Playground with regex

OpenAi Playground Regexคืออะไร?

OpenAi Playground Regex เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lgsp.dev และคุณลักษณะหลักของมันคือ "Allow formatting on Playground with regex"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย OpenAi Playground Regex

ดาวน์โหลดไฟล์ส่วนขยาย 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*"
            ]
        }
    ]
}