Regex Replace

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

什么是Regex Replace?

Regex Replace是由Code Charity开发的Chrome扩展程序,该扩展的主要功能是“Regex replace. Replace anything on every site. Regex replace anywhere. Replace HTML. Use regular expression to Inject html,…”。

扩展截图

screenshot

下载Regex Replace扩展crx文件

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

扩展使用说明

                        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                    

扩展基本信息

名称 Regex Replace Regex Replace
ID ihcaaefaoebbcklmolaflgllidfamfgm
官方URL https://chromewebstore.google.com/detail/regex-replace/ihcaaefaoebbcklmolaflgllidfamfgm
简介 Regex replace. Replace anything on every site. Regex replace anywhere. Replace HTML. Use regular expression to Inject html,…
文件大小 203 KB
安装次数 577
当前版本 1.1
更新时间 2020-10-21
上架时间 2020-04-29
评分 4.48/5 共33次评分
开发者 Code Charity
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL http://improvedtube.com/privacy
支持的语言 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"
            }
        }
    }
}