Trello List Filter
Filters Trello Lists based on their titles
Co to jest Trello List Filter?
Trello List Filter to rozszerzenie Chrome opracowane przez anthonyastige, a jego główną funkcją jest „Filters Trello Lists based on their titles”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Trello List Filter
Pobierz pliki rozszerzeń Trello List 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
Filters your Trello Lists by their titles
* Filters instantly as you type
* Automatically saves settings
* Applies across all open Trello Boards
Includes advanced options such as
* Blacklist vs Whitelist
* Matching modes: Contains/Exact Match/Regex
* Case sensitivity (on / off) Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | nejmlobcaghdppkjgihmmeigobhgecnn |
| Oficjalny URL | https://chromewebstore.google.com/detail/trello-list-filter/nejmlobcaghdppkjgihmmeigobhgecnn |
| Opis | Filters Trello Lists based on their titles |
| Rozmiar pliku | 6.4 KB |
| Liczba instalacji | 23 |
| Aktualna Wersja | 1.0 |
| Ostatnia Aktualizacja | 2017-05-04 |
| Data Publikacji | 2017-05-04 |
| Ocena | 4.00/5 Łącznie 1 Oceny |
| Deweloper | anthonyastige |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Trello List Filter",
"description": "Filters Trello Lists based on their titles",
"version": "1.0",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/trello.com\/*"
],
"js": [
"hider.js"
],
"run_at": "document_end"
}
]
} | |