Select filter

Filtering select items.

什么是Select filter?

Select filter是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Filtering select items.”。

扩展截图

screenshot

下载Select filter扩展crx文件

下载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 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
    }
}