Select filter

Filtering select items.

Co to jest Select filter?

Select filter to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Filtering select items.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Select filter

Pobierz pliki rozszerzeń Select filter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Select filter Select filter
ID cfndbgamcjlfppbehioihlpinfcheinc
Oficjalny URL https://chromewebstore.google.com/detail/select-filter/cfndbgamcjlfppbehioihlpinfcheinc
Opis Filtering select items.
Rozmiar pliku 38.8 KB
Liczba instalacji 47
Aktualna Wersja 0.0.3
Ostatnia Aktualizacja 2017-12-04
Data Publikacji 2017-12-03
Deweloper Unknown
Typ Płatności free
Strona Rozszerzenia https://github.com/kuwa72/chrome-extension-findname
Obsługiwane Języki 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
    }
}