Rex - RegEx Highlight or Collapse Text

Use regular expressions to highlight or collapse text. Useful for logs or stacktraces.

Rex - RegEx Highlight or Collapse Text क्या है?

Rex - RegEx Highlight or Collapse Text cgrossde द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use regular expressions to highlight or collapse text. Useful for logs or stacktraces."।

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

screenshot
screenshot

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

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

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

                        This extension allows to use regular expressions to highlight or collapse text on a web page. It was developed to facilitate log analysis (e.g. highlight important parts of stacktraces and collapsing framework noise)

GitHub: https://github.com/cgrossde/rex                    

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

नाम Rex - RegEx Highlight or Collapse Text Rex - RegEx Highlight or Collapse Text
ID eejlhekkafpkffbhpidchepheodkgnib
आधिकारिक URL https://chromewebstore.google.com/detail/rex-regex-highlight-or-co/eejlhekkafpkffbhpidchepheodkgnib
विवरण Use regular expressions to highlight or collapse text. Useful for logs or stacktraces.
फ़ाइल का आकार 314 KB
स्थापना संख्या 192
वर्तमान संस्करण 0.3.1
अंतिम अपडेट 2018-09-06
प्रकाशन तिथि 2018-09-06
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर cgrossde
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/cgrossde/rex
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Rex - RegEx Highlight or Collapse Text",
    "short_name": "REX",
    "description": "Use regular expressions to highlight or collapse text. Useful for logs or stacktraces.",
    "version": "0.3.1",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "icons": {
        "128": "img\/icon128.png",
        "48": "img\/icon48.png",
        "32": "img\/icon32.png"
    },
    "offline_enabled": true,
    "web_accessible_resources": [
        "css\/content.css",
        "js\/*.js"
    ],
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/content\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_title": "Rex - Search and Highlight",
        "default_icon": "img\/icon48.png",
        "default_popup": "popup.html"
    }
}