Select filter
Filtering select items.
Что такое Select filter?
Select filter - это расширение Chrome, разработанное Unknown, и его основная функция - "Filtering select items.".
Снимки экрана расширения
Скачать файл CRX расширения Select filter
Скачайте файлы расширений Select filter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 '.', '.*' .
Основная информация о расширении
Название | Select filter |
ID | cfndbgamcjlfppbehioihlpinfcheinc |
Официальный URL | https://chromewebstore.google.com/detail/select-filter/cfndbgamcjlfppbehioihlpinfcheinc |
Описание | Filtering select items. |
Размер файла | 38.8 KB |
Количество установок | 47 |
Текущая Версия | 0.0.3 |
Последнее Обновление | 2017-12-04 |
Дата публикации | 2017-12-03 |
Разработчик | Unknown |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/kuwa72/chrome-extension-findname |
Поддерживаемые языки | 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 } } |