Regex search
Allows to search on page using regular expression pattern. Use CTRL+SHIFT+F hotkey to open search form
Wat is Regex search?
Regex search is een Chrome-extensie ontwikkeld door Zudwa, en de belangrijkste functie is "Allows to search on page using regular expression pattern. Use CTRL+SHIFT+F hotkey to open search form".
Extensie Screenshots
Download het CRX-bestand van de extensie Regex search
Download Regex search-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension allows to search on page using regular expression pattern. Use CTRL+SHIFT+F shortcut to open search box.
Basisinformatie over de Extensie
Naam | Regex search |
ID | bjfgihoefmkcaiipaddgpcljkjbaomfk |
Officiële URL | https://chromewebstore.google.com/detail/regex-search/bjfgihoefmkcaiipaddgpcljkjbaomfk |
Beschrijving | Allows to search on page using regular expression pattern. Use CTRL+SHIFT+F hotkey to open search form |
Bestandsgrootte | 13.34 KB |
Aantal Installaties | 236 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2016-02-25 |
Publicatiedatum | 2016-02-25 |
Beoordeling | 3.40/5 Totaal 5 Beoordelingen |
Ontwikkelaar | Zudwa |
Betalingswijze | free |
Ondersteunde Talen | 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" } } } } |