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
Eメール [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"
    ]
}