Reg Search
Allows to search the DOM elements of a web page with regular expressions.
Reg Search क्या है?
Reg Search SFerrazLeite द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows to search the DOM elements of a web page with regular expressions."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Reg Search एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Allows to search the DOM elements of a web page with regular expressions.
एक्सटेंशन की मूल जानकारी
नाम | Reg Search |
ID | ndnhmbfdiponmfjppfblcmbkcmjoibpf |
आधिकारिक URL | https://chromewebstore.google.com/detail/reg-search/ndnhmbfdiponmfjppfblcmbkcmjoibpf |
विवरण | Allows to search the DOM elements of a web page with regular expressions. |
फ़ाइल का आकार | 82.07 KB |
स्थापना संख्या | 63 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2016-03-11 |
प्रकाशन तिथि | 2016-03-11 |
रेटिंग | 4.00/5 कुल 1 रेटिंग्स |
डेवलपर | SFerrazLeite |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/SFerrazLeite/reg-search |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "eventPage\/eventPage.js" ], "persistent": false }, "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_popup": "popup\/popup.html" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+Shift+F" } }, "next": { "description": "Go to the next search result", "suggested_key": { "default": "Alt+N" } }, "prev": { "description": "Go to the previous search result", "suggested_key": { "default": "Alt+P" } }, "copy": { "description": "Copy search results as JSON array to clip board", "suggested_key": { "default": "Alt+C" } } }, "content_scripts": [ { "css": [ "content\/content.css" ], "js": [ "content\/jquery.min.js", "content\/content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ] } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png" }, "manifest_version": 2, "name": "Reg Search", "options_page": "options\/options.html", "permissions": [ "tabs", "http:\/\/*\/*", "clipboardWrite" ], "version": "1.0" } |