Select filter
Filtering select items.
¿Qué es Select filter?
Select filter es una extensión de Chrome desarrollada por Unknown, y su función principal es "Filtering select items.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Select filter
Descarga archivos de extensión Select filter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Add filter to all select boxes in page. You must input target URL list by regular expression in option page. ex) ^https?://127\.0\.0\.1/ => 127.0.0.1 with HTTP/HTTPS redmine => All URL of includes 'redmine' . => If you want enable to all URL, you must use almighty matcher, like '.', '.*' .
Información Básica de la Extensión
Nombre | Select filter |
ID | cfndbgamcjlfppbehioihlpinfcheinc |
URL Oficial | https://chromewebstore.google.com/detail/select-filter/cfndbgamcjlfppbehioihlpinfcheinc |
Descripción | Filtering select items. |
Tamaño del Archivo | 38.8 KB |
Cantidad de Instalaciones | 47 |
Versión Actual | 0.0.3 |
Última Actualización | 2017-12-04 |
Fecha de Publicación | 2017-12-03 |
Desarrollador | Unknown |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/kuwa72/chrome-extension-findname |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Select filter", "version": "0.0.3", "manifest_version": 2, "description": "Filtering select items.", "homepage_url": "https:\/\/github.com\/kuwa72\/chrome-extension-findname", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "browser_action": { "default_icon": "icons\/icon19.png" }, "permissions": [ "tabs", "notifications", "http:\/\/*\/", "https:\/\/*\/", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "options_ui": { "page": "options.html", "browser_style": true } } |