Select filter
Filtering select items.
What is Select filter?
Select filter is a Chrome extension developed by Unknown, and its main feature is "Filtering select items.".
Extension Screenshots
Download Select filter Extension CRX File
Download Select filter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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 '.', '.*' .
Extension Basic Information
Name | Select filter |
ID | cfndbgamcjlfppbehioihlpinfcheinc |
Official URL | https://chromewebstore.google.com/detail/select-filter/cfndbgamcjlfppbehioihlpinfcheinc |
Description | Filtering select items. |
File Size | 38.8 KB |
Installation Count | 47 |
Current Version | 0.0.3 |
Last Updated | 2017-12-04 |
Publish Date | 2017-12-03 |
Developer | Unknown |
Payment Type | free |
Extension Website | https://github.com/kuwa72/chrome-extension-findname |
Supported Languages | 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 } } |