Regex Replace

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

什么是Regex Replace?

Regex Replace是由Jack Kingsman开发的Chrome扩展程序,该扩展的主要功能是“A regex engine to handle basic regular expressions on all viewed pages.”。

扩展截图

screenshot
screenshot
screenshot

下载Regex Replace扩展crx文件

下载Regex Replace扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Regex Replace Regex Replace
ID eggkcpojddgjkakokkdhocbjebhgkonb
官方URL https://chromewebstore.google.com/detail/regex-replace/eggkcpojddgjkakokkdhocbjebhgkonb
简介 A regex engine to handle basic regular expressions on all viewed pages.
文件大小 165 KB
安装次数 1,778
当前版本 0.0.5
更新时间 2023-12-11
上架时间 2019-04-11
评分 4.27/5 共22次评分
开发者 Jack Kingsman
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/jkingsman/regex-replace/issues
帮助页面URL https://github.com/jkingsman/regex-replace/issues
支持的语言 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"
    ]
}