Regex search
Allows to search on page using regular expression pattern. Use CTRL+SHIFT+F hotkey to open search form
Cos'è Regex search?
Regex search è un'estensione di Chrome sviluppata da Zudwa, e la sua funzione principale è "Allows to search on page using regular expression pattern. Use CTRL+SHIFT+F hotkey to open search form".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Regex search
Scarica i file di estensione Regex 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
This extension allows to search on page using regular expression pattern. Use CTRL+SHIFT+F shortcut to open search box.
Informazioni di Base sull'Estensione
Nome | Regex search |
ID | bjfgihoefmkcaiipaddgpcljkjbaomfk |
URL Ufficiale | https://chromewebstore.google.com/detail/regex-search/bjfgihoefmkcaiipaddgpcljkjbaomfk |
Descrizione | Allows to search on page using regular expression pattern. Use CTRL+SHIFT+F hotkey to open search form |
Dimensione del File | 13.34 KB |
Conteggio Installazioni | 236 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2016-02-25 |
Data di Pubblicazione | 2016-02-25 |
Valutazione | 3.40/5 Totale 5 Valutazioni |
Sviluppatore | Zudwa |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Regex search", "short_name": "Search on page using regular expression", "version": "1.1", "description": "Allows to search on page using regular expression pattern.\n\nUse CTRL+SHIFT+F hotkey to open search form", "icons": { "16": "img\/loupe-icon-16.png", "48": "img\/loupe-icon-48.png", "128": "img\/loupe-icon-128.png" }, "browser_action": { "default_icon": { "19": "img\/loupe-icon-19.png", "38": "img\/loupe-icon-38.png" }, "default_popup": "search-box.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "background": { "scripts": [ "background.js" ] }, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Shift+F", "mac": "Command+Shift+F", "chromeos": "Ctrl+Shift+F", "linux": "Ctrl+Shift+F" } } } } |