Reg Search
Allows to search the DOM elements of a web page with regular expressions.
Qu'est-ce que Reg Search ?
Reg Search est une extension Chrome développée par SFerrazLeite, et sa fonction principale est "Allows to search the DOM elements of a web page with regular expressions.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Reg Search
Téléchargez les fichiers d'extension Reg Search au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Allows to search the DOM elements of a web page with regular expressions.
Informations de Base sur l'Extension
Nom | Reg Search |
ID | ndnhmbfdiponmfjppfblcmbkcmjoibpf |
URL Officiel | https://chromewebstore.google.com/detail/reg-search/ndnhmbfdiponmfjppfblcmbkcmjoibpf |
Description | Allows to search the DOM elements of a web page with regular expressions. |
Taille du Fichier | 82.07 KB |
Nombre d'Installations | 63 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2016-03-11 |
Date de Publication | 2016-03-11 |
Évaluation | 4.00/5 Total 1 Évaluations |
Développeur | SFerrazLeite |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/SFerrazLeite/reg-search |
Langues Prises en Charge | 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" } |