Regex Text Replacer

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

什么是Regex Text Replacer?

Regex Text Replacer是由sbreakey开发的Chrome扩展程序,该扩展的主要功能是“Specify regex patterns of text to match and replace in the page.”。

下载Regex Text Replacer扩展crx文件

下载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"
        }
    ]
}