Regex Replace

A regex engine to handle basic regular expressions on all viewed pages.

Regex Replace là gì?

Regex Replace là một tiện ích mở rộng Chrome được phát triển bởi Jack Kingsman, và tính năng chính của nó là "A regex engine to handle basic regular expressions on all viewed pages.".

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

screenshot
screenshot
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

                        Whether you want to consolidate your cloud-to-butt and your xkcd inspired s/keyboard/leopard extensions, or just do a simple regex replace on all pages, this extension is for you.

With a quick engine that doesn't interrupt page display and an easy way to add new expressions, Regex Replace is what you need to do fast and easy regex replacements on every page you see.                    

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

Tên Regex Replace Regex Replace
ID eggkcpojddgjkakokkdhocbjebhgkonb
URL Chính Thức https://chromewebstore.google.com/detail/regex-replace/eggkcpojddgjkakokkdhocbjebhgkonb
Mô tả A regex engine to handle basic regular expressions on all viewed pages.
Kích Thước Tệp 165 KB
Số Lần Cài Đặt 1,778
Phiên Bản Hiện Tại 0.0.5
Cập Nhật Lần Cuối 2023-12-11
Ngày Phát Hành 2019-04-11
Đánh Giá 4.27/5 Tổng số 22 Đánh Giá
Nhà Phát Triển Jack Kingsman
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jkingsman/regex-replace/issues
URL Trang Trợ Giúp https://github.com/jkingsman/regex-replace/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Regex Replace",
    "version": "0.0.5",
    "description": "A regex engine to handle basic regular expressions on all viewed pages.",
    "browser_action": {
        "default_title": "Regex Replace Options",
        "default_icon": {
            "19": "img\/gear19.png",
            "38": "img\/gear38.png"
        },
        "default_popup": "html\/main.html"
    },
    "author": "Jack Kingsman ",
    "icons": {
        "16": "img\/gear16.png",
        "48": "img\/gear48.png",
        "128": "img\/gear128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "html\/options.html",
    "permissions": [
        "storage"
    ]
}