OpenAi Playground Regex

Allow formatting on Playground with regex

OpenAi Playground Regex là gì?

OpenAi Playground Regex là một tiện ích mở rộng Chrome được phát triển bởi lgsp.dev, và tính năng chính của nó là "Allow formatting on Playground with regex".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng OpenAi Playground Regex

Tải xuống các tệp mở rộng OpenAi Playground Regex dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên OpenAi Playground Regex OpenAi Playground Regex
ID oimbbikjmbpamdloglajlpfpiknmogpf
URL Chính Thức https://chromewebstore.google.com/detail/openai-playground-regex/oimbbikjmbpamdloglajlpfpiknmogpf
Mô tả Allow formatting on Playground with regex
Kích Thước Tệp 15.23 KB
Số Lần Cài Đặt 228
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2022-12-26
Ngày Phát Hành 2022-12-06
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển lgsp.dev
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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*"
            ]
        }
    ]
}