Regex Text Replacer

Specify regex patterns of text to match and replace in the page.

Regex Text Replacerคืออะไร?

Regex Text Replacer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sbreakey และคุณลักษณะหลักของมันคือ "Specify regex patterns of text to match and replace in the page."

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

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

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

                        Specify regular expression patters to match and replace. Only searches text nodes. Runs once DOM is fully loaded, and then monitors the DOM for changes.

Use %s in the replacement text to insert whatever was matched in the replacement.
Use $1, $2, etc to insert the respective matched group.                    

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

ชื่อ Regex Text Replacer Regex Text Replacer
ID mdeenjjhjifdckljhclkbcaoijgnmmch
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/regex-text-replacer/mdeenjjhjifdckljhclkbcaoijgnmmch
คำอธิบาย Specify regex patterns of text to match and replace in the page.
ขนาดไฟล์ 6.24 KB
จำนวนการติดตั้ง 59
เวอร์ชันปัจจุบัน 0.2
อัปเดตครั้งล่าสุด 2014-09-06
วันที่เผยแพร่ 2014-09-06
คะแนน 2.80/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา sbreakey
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Regex Text Replacer",
    "description": "Specify regex patterns of text to match and replace in the page.",
    "version": "0.2",
    "permissions": [
        "",
        "storage"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_idle"
        }
    ]
}