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