Select filter
Filtering select items.
Co je Select filter?
Select filter je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „Filtering select items.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Select filter
Stáhněte si soubory rozšíření Select filter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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 '.', '.*' .
Základní Informace o Rozšíření
Název | Select filter |
ID | cfndbgamcjlfppbehioihlpinfcheinc |
Oficiální URL | https://chromewebstore.google.com/detail/select-filter/cfndbgamcjlfppbehioihlpinfcheinc |
Popis | Filtering select items. |
Velikost souboru | 38.8 KB |
Počet instalací | 47 |
Aktuální Verze | 0.0.3 |
Poslední Aktualizace | 2017-12-04 |
Datum Vydání | 2017-12-03 |
Vývojář | Unknown |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/kuwa72/chrome-extension-findname |
Podporované Jazyky | 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 } } |