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