OpenAi Playground Regex
Allow formatting on Playground with regex
什麼是OpenAi Playground Regex?
OpenAi Playground Regex是由lgsp.dev開發的Chrome擴展程式,該擴展的主要功能是“Allow formatting on Playground with regex”。
擴展截圖
下載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 |
ID | oimbbikjmbpamdloglajlpfpiknmogpf |
官方網址 | 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*" ] } ] } |