Regex Matcher

Handy tool for creating and testing regular expressions (regex)

Regex Matcher क्या है?

Regex Matcher Jesse Jones द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Handy tool for creating and testing regular expressions (regex)"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Regex Matcher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
    ]
}