Trello List Filter
Filters Trello Lists based on their titles
Wat is Trello List Filter?
Trello List Filter is een Chrome-extensie ontwikkeld door anthonyastige, en de belangrijkste functie is "Filters Trello Lists based on their titles".
Extensie Screenshots
Download het CRX-bestand van de extensie Trello List Filter
Download Trello List Filter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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)
Basisinformatie over de Extensie
Naam | Trello List Filter |
ID | nejmlobcaghdppkjgihmmeigobhgecnn |
Officiële URL | https://chromewebstore.google.com/detail/trello-list-filter/nejmlobcaghdppkjgihmmeigobhgecnn |
Beschrijving | Filters Trello Lists based on their titles |
Bestandsgrootte | 6.4 KB |
Aantal Installaties | 23 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2017-05-04 |
Publicatiedatum | 2017-05-04 |
Beoordeling | 4.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | anthonyastige |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } ] } |