RegExp Search and Highlight
Find text content with regular expression and highlight it, or collapse unnecessary blocks.
RegExp Search and Highlight क्या है?
RegExp Search and Highlight Alexandr Pudich द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Find text content with regular expression and highlight it, or collapse unnecessary blocks."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में RegExp Search and Highlight एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Find text content with regular expression and highlight it, or collapse unnecessary blocks. It was writed for facilitating some text log analyze. You can to add "url matches" for permanent enabling on some domains / pages. ### Features: * local storage of preferences (currently there is no need for synchronized storage) * import / export profiles * enable / disable on tab * customizable work mode (e.g. you can add regexp matching to needly URL's, where extension will active always) * color changing ability for every regexp and collapse block * reading sequential text elements, to which chrome devide the content due to constraints (~ 65535 length). Bypassing the built-in elements is not implemented for a variety of reasons and also as useless * notifying activated tabs when profile is modified --------------------- ### TODO * store page in cache for ability to rerun functions (will fully work by "refresh" button in popup) without page reloading * add locales * exclude other extensions influence JS files in this packet was minified. But source code is available on github, you can fork it, discuss and offer improvements! [ https://github.com/linkuha/ext-resh ]
एक्सटेंशन की मूल जानकारी
नाम | RegExp Search and Highlight |
ID | hfoealcpjklgmfbdkoeckhegfnacembo |
आधिकारिक URL | https://chromewebstore.google.com/detail/regexp-search-and-highlig/hfoealcpjklgmfbdkoeckhegfnacembo |
विवरण | Find text content with regular expression and highlight it, or collapse unnecessary blocks. |
फ़ाइल का आकार | 23.99 KB |
स्थापना संख्या | 204 |
वर्तमान संस्करण | 0.1.4 |
अंतिम अपडेट | 2018-04-16 |
प्रकाशन तिथि | 2018-04-16 |
रेटिंग | 3.44/5 कुल 9 रेटिंग्स |
डेवलपर | Alexandr Pudich |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "RegExp Search and Highlight", "short_name": "RegExp Search and Highlight", "description": "Find text content with regular expression and highlight it, or collapse unnecessary blocks.", "version": "0.1.4", "default_locale": "en", "icons": { "128": "img\/icon128.png", "48": "img\/icon48.png" }, "offline_enabled": true, "web_accessible_resources": [ "css\/content.css" ], "content_scripts": [ { "run_at": "document_idle", "matches": [ "*:\/\/*\/*" ], "css": [ "css\/content.css" ], "js": [ "js\/content.js" ] } ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "options_page": "options.html", "permissions": [ "activeTab", "storage" ], "browser_action": { "default_title": "RegExp Search and Highlight", "default_icon": "img\/icon48.png", "default_popup": "popup.html" } } |