Regex Checker

This extension uses regular expressions to find important elements on webpages.

Regex Checker क्या है?

Regex Checker Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension uses regular expressions to find important elements on webpages."।

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

screenshot
screenshot

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

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

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

                        Regex Checker uses regular expressions to find important elements on webpages.
The extension finds important text on webpages and highlights.

There are 2 modes of operation: manual and automatic.

Automatic:
- In automatic mode, a list of default regular expressions are used to parse the page and highlight important elements.
- The user can add or remove expressions from the current search criteria.

Manual:
- In manual mode, the user enters a custom regular expression along with flags.                    

एक्सटेंशन की मूल जानकारी

नाम Regex Checker Regex Checker
ID gkcnkoebkkppbapcjifgokmpcflfhbde
आधिकारिक URL https://chromewebstore.google.com/detail/regex-checker/gkcnkoebkkppbapcjifgokmpcflfhbde
विवरण This extension uses regular expressions to find important elements on webpages.
फ़ाइल का आकार 88.1 KB
स्थापना संख्या 89
वर्तमान संस्करण 0.0.0.1
अंतिम अपडेट 2017-12-09
प्रकाशन तिथि 2017-12-09
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Unknown
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Regex Checker",
    "description": "This extension uses regular expressions to find important elements on webpages.",
    "version": "0.0.0.1",
    "browser_action": {
        "default_icon": "img\/iconstar.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "lib\/jquery-3.2.1.js",
                "js\/searchFunction.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab"
    ]
}