Regex Text Replacer

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

Regex Text Replacer là gì?

Regex Text Replacer là một tiện ích mở rộng Chrome được phát triển bởi sbreakey, và tính năng chính của nó là "Specify regex patterns of text to match and replace in the page.".

Tải xuống tệp CRX của tiện ích mở rộng Regex Text Replacer

Tải xuống các tệp mở rộng Regex Text Replacer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Regex Text Replacer Regex Text Replacer
ID mdeenjjhjifdckljhclkbcaoijgnmmch
URL Chính Thức https://chrome.google.com/webstore/detail/regex-text-replacer/mdeenjjhjifdckljhclkbcaoijgnmmch
Mô tả Specify regex patterns of text to match and replace in the page.
Kích Thước Tệp 6.24 KB
Số Lần Cài Đặt 59
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2014-09-06
Ngày Phát Hành 2014-09-06
Đánh Giá 2.80/5 Tổng số 5 Đánh Giá
Nhà Phát Triển sbreakey
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}