Regex Text Replacer

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

Apa itu Regex Text Replacer?

Regex Text Replacer adalah ekstensi Chrome yang dikembangkan oleh sbreakey, dan fitur utamanya adalah "Specify regex patterns of text to match and replace in the page.".

Unduh Berkas CRX Ekstensi Regex Text Replacer

Unduh file ekstensi Regex Text Replacer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Regex Text Replacer Regex Text Replacer
ID mdeenjjhjifdckljhclkbcaoijgnmmch
URL Resmi https://chrome.google.com/webstore/detail/regex-text-replacer/mdeenjjhjifdckljhclkbcaoijgnmmch
Deskripsi Specify regex patterns of text to match and replace in the page.
Ukuran File 6.24 KB
Jumlah Instalasi 59
Versi Saat Ini 0.2
Terakhir Diperbarui 2014-09-06
Tanggal Publikasi 2014-09-06
Penilaian 2.80/5 Total 5 Penilaian
Pengembang sbreakey
Tipe Pembayaran free
Bahasa yang Didukung 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"
        }
    ]
}