Regex Replace

Regex replace. Replace anything on every site. Regex replace anywhere. Replace HTML. Use regular expression to Inject html,…

Regex Replace là gì?

Regex Replace là một tiện ích mở rộng Chrome được phát triển bởi Code Charity, và tính năng chính của nó là "Regex replace. Replace anything on every site. Regex replace anywhere. Replace HTML. Use regular expression to Inject html,…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

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

Tải xuống các tệp mở rộng Regex Replace 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

                        Regex replace. Replace anything on every site. Regex replace anywhere.  Replace HTML.  Use regular expression to Inject html, pictures, css, js scripts, features anywhere

Options:
Apply by Domain, URL, Keyword, Regex (or global)
Bulk edit  (Regex.txt text file)
Regex flags
(Activate/deactive applied regex)
Display applied regex's on page. Copy all matches. 
Chained Regex (Apply a regular expression conditionally only if other Regex's match the page content already)
Negative Look ahead / Positive Look ahead

TESTING VERSION:   
Options to come soon! Which one first? (Please dont down vote just yet)

We are developing distraction free extensions since 2012 for >250000 people https://github.com/ImprovedTube/ImprovedTube                    

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

Tên Regex Replace Regex Replace
ID ihcaaefaoebbcklmolaflgllidfamfgm
URL Chính Thức https://chromewebstore.google.com/detail/regex-replace/ihcaaefaoebbcklmolaflgllidfamfgm
Mô tả Regex replace. Replace anything on every site. Regex replace anywhere. Replace HTML. Use regular expression to Inject html,…
Kích Thước Tệp 203 KB
Số Lần Cài Đặt 577
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2020-10-21
Ngày Phát Hành 2020-04-29
Đánh Giá 4.48/5 Tổng số 33 Đánh Giá
Nhà Phát Triển Code Charity
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật http://improvedtube.com/privacy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Regex Replace",
    "version": "1.1",
    "icons": {
        "16": "assets\/icons\/16.png",
        "32": "assets\/icons\/32.png",
        "48": "assets\/icons\/48.png",
        "128": "assets\/icons\/128.png"
    },
    "browser_action": {
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content-scripts.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "",
        "storage"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "linux": "Ctrl+Shift+F",
                "mac": "Command+Shift+F",
                "windows": "Ctrl+Shift+F",
                "chromeos": "Ctrl+Shift+F"
            }
        }
    }
}