Trello minimal UI toggle
Hide unused elements from Trello board
Wat is Trello minimal UI toggle?
Trello minimal UI toggle is een Chrome-extensie ontwikkeld door terrylidev, en de belangrijkste functie is "Hide unused elements from Trello board".
Extensie Screenshots
Download het CRX-bestand van de extensie Trello minimal UI toggle
Download Trello minimal UI toggle-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
This extension allows you to have a clean Trello board by hiding unused elements, buttons and functions. Basisinformatie over de Extensie
| Naam | |
| ID | higifdcpoicalcpgmbohdohmcgamabfn |
| Officiële URL | https://chromewebstore.google.com/detail/trello-minimal-ui-toggle/higifdcpoicalcpgmbohdohmcgamabfn |
| Beschrijving | Hide unused elements from Trello board |
| Bestandsgrootte | 232 KB |
| Aantal Installaties | 40 |
| Huidige Versie | 1.0.0 |
| Laatst Bijgewerkt | 2020-06-08 |
| Publicatiedatum | 2020-06-07 |
| Beoordeling | 4.67/5 Totaal 3 Beoordelingen |
| Ontwikkelaar | terrylidev |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Trello minimal UI toggle",
"version": "1.0.0",
"description": "Hide unused elements from Trello board",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": "icon128.png"
},
"content_scripts": [
{
"js": [
"content.js"
],
"run_at": "document_idle",
"matches": [
"https:\/\/trello.com\/*"
]
}
],
"permissions": [
"storage"
]
} | |