Regex Replace

A regex engine to handle basic regular expressions on all viewed pages.

Regex Replaceคืออะไร?

Regex Replace เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jack Kingsman และคุณลักษณะหลักของมันคือ "A regex engine to handle basic regular expressions on all viewed pages."

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

screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Regex Replace ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Whether you want to consolidate your cloud-to-butt and your xkcd inspired s/keyboard/leopard extensions, or just do a simple regex replace on all pages, this extension is for you.

With a quick engine that doesn't interrupt page display and an easy way to add new expressions, Regex Replace is what you need to do fast and easy regex replacements on every page you see.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Regex Replace Regex Replace
ID eggkcpojddgjkakokkdhocbjebhgkonb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/regex-replace/eggkcpojddgjkakokkdhocbjebhgkonb
คำอธิบาย A regex engine to handle basic regular expressions on all viewed pages.
ขนาดไฟล์ 165 KB
จำนวนการติดตั้ง 1,778
เวอร์ชันปัจจุบัน 0.0.5
อัปเดตครั้งล่าสุด 2023-12-11
วันที่เผยแพร่ 2019-04-11
คะแนน 4.27/5 รวมทั้งหมด 22 คะแนน
ผู้พัฒนา Jack Kingsman
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jkingsman/regex-replace/issues
URL หน้าช่วยเหลือ https://github.com/jkingsman/regex-replace/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Regex Replace",
    "version": "0.0.5",
    "description": "A regex engine to handle basic regular expressions on all viewed pages.",
    "browser_action": {
        "default_title": "Regex Replace Options",
        "default_icon": {
            "19": "img\/gear19.png",
            "38": "img\/gear38.png"
        },
        "default_popup": "html\/main.html"
    },
    "author": "Jack Kingsman ",
    "icons": {
        "16": "img\/gear16.png",
        "48": "img\/gear48.png",
        "128": "img\/gear128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "html\/options.html",
    "permissions": [
        "storage"
    ]
}