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
官方網址 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
    }
}