Regex Text Replacer

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

What is Regex Text Replacer?

Regex Text Replacer is a Chrome extension developed by sbreakey, and its main feature is "Specify regex patterns of text to match and replace in the page.".

Download Regex Text Replacer Extension CRX File

Download Regex Text Replacer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Regex Text Replacer Regex Text Replacer
ID mdeenjjhjifdckljhclkbcaoijgnmmch
Official URL https://chrome.google.com/webstore/detail/regex-text-replacer/mdeenjjhjifdckljhclkbcaoijgnmmch
Description Specify regex patterns of text to match and replace in the page.
File Size 6.24 KB
Installation Count 59
Current Version 0.2
Last Updated 2014-09-06
Publish Date 2014-09-06
Rating 2.80/5 Total 5 Ratings
Developer sbreakey
Payment Type free
Supported Languages 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"
        }
    ]
}