Select filter

Filtering select items.

Cos'è Select filter?

Select filter è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Filtering select items.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Select filter

Scarica i file di estensione Select filter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Select filter Select filter
ID cfndbgamcjlfppbehioihlpinfcheinc
URL Ufficiale https://chromewebstore.google.com/detail/select-filter/cfndbgamcjlfppbehioihlpinfcheinc
Descrizione Filtering select items.
Dimensione del File 38.8 KB
Conteggio Installazioni 47
Versione Corrente 0.0.3
Ultimo Aggiornamento 2017-12-04
Data di Pubblicazione 2017-12-03
Sviluppatore Unknown
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/kuwa72/chrome-extension-findname
Lingue Supportate 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
    }
}