Regex Matcher

Handy tool for creating and testing regular expressions (regex)

什麼是Regex Matcher?

Regex Matcher是由Jesse Jones開發的Chrome擴展程式,該擴展的主要功能是“Handy tool for creating and testing regular expressions (regex)”。

擴展截圖

screenshot

下載Regex Matcher擴展crx文件

下載Regex Matcher擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Minimalist regular expressions editor for creating and testing regular expressions (regex) against a set of sample text. 

Test regular expressions against patterns, such as:
- Email address
- IP Addresses
- URLs
- Usernames

and many other common and unique pattern combinations.

Features:
- Light/dark editor
- Matched characters highlighted
- Set regex flags (using the supported flag characters)
- Cheatsheet of common regular expression symbols

Shortcut Key:
Ctrl+Shift+F

Supported Regex Flags:
g - global match; find all matches rather than stopping after the first match
i - ignore case; if u flag is also enabled, use Unicode case folding
m - multiline; treat beginning and end characters (^ and $) as working over multiple lines (i.e., match the beginning or end of each line (delimited by \n or \r), not only the very beginning or end of the whole input string)
u - Unicode; treat pattern as a sequence of Unicode code points
y - sticky; matches only from the index indicated by the lastIndex property of this regular expression in the target string (and does not attempt to match from any later indexes).                    

擴展基本資訊

名稱 Regex Matcher Regex Matcher
ID jkokpkcggnifdedpaicbjcapmhiecjjk
官方網址 https://chromewebstore.google.com/detail/regex-matcher/jkokpkcggnifdedpaicbjcapmhiecjjk
簡介 Handy tool for creating and testing regular expressions (regex)
檔案大小 53.37 KB
安裝次數 1,552
目前版本 1.21
更新時間 2021-10-26
上架時間 2019-02-28
評分 5.00/5 共 2 次評分
開發者 Jesse Jones
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Regex Matcher",
    "description": "Handy tool for creating and testing regular expressions (regex)",
    "version": "1.21",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/regex-matcher\/jkokpkcggnifdedpaicbjcapmhiecjjk",
    "action": {
        "default_popup": "index.html",
        "default_icon": "assets\/img\/icon_19.png"
    },
    "icons": {
        "16": "assets\/img\/icon_16.png",
        "48": "assets\/img\/icon_48.png",
        "128": "assets\/img\/icon_128.png"
    },
    "manifest_version": 3,
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            },
            "description": "Opens Regex Matcher"
        }
    },
    "permissions": [
        "storage"
    ]
}