Reg Search
Allows to search the DOM elements of a web page with regular expressions.
Cos'è Reg Search?
Reg Search è un'estensione di Chrome sviluppata da SFerrazLeite, e la sua funzione principale è "Allows to search the DOM elements of a web page with regular expressions.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Reg Search
Scarica i file di estensione Reg Search in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Allows to search the DOM elements of a web page with regular expressions.
Informazioni di Base sull'Estensione
Nome | Reg Search |
ID | ndnhmbfdiponmfjppfblcmbkcmjoibpf |
URL Ufficiale | https://chromewebstore.google.com/detail/reg-search/ndnhmbfdiponmfjppfblcmbkcmjoibpf |
Descrizione | Allows to search the DOM elements of a web page with regular expressions. |
Dimensione del File | 82.07 KB |
Conteggio Installazioni | 63 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2016-03-11 |
Data di Pubblicazione | 2016-03-11 |
Valutazione | 4.00/5 Totale 1 Valutazioni |
Sviluppatore | SFerrazLeite |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/SFerrazLeite/reg-search |
Lingue Supportate | 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" } |