Select filter

Filtering select items.

Apa itu Select filter?

Select filter adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Filtering select items.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Select filter

Unduh file ekstensi Select filter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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 '.', '.*' .                    

Informasi Dasar Ekstensi

Nama Select filter Select filter
ID cfndbgamcjlfppbehioihlpinfcheinc
URL Resmi https://chromewebstore.google.com/detail/select-filter/cfndbgamcjlfppbehioihlpinfcheinc
Deskripsi Filtering select items.
Ukuran File 38.8 KB
Jumlah Instalasi 47
Versi Saat Ini 0.0.3
Terakhir Diperbarui 2017-12-04
Tanggal Publikasi 2017-12-03
Pengembang Unknown
Tipe Pembayaran free
Situs Ekstensi https://github.com/kuwa72/chrome-extension-findname
Bahasa yang Didukung 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
    }
}