[DEPRECATED] List Layouts for Trello
Allow Trello lists to be displayed vertically or in a grid.
Was ist [DEPRECATED] List Layouts for Trello?
[DEPRECATED] List Layouts for Trello ist eine Chrome-Erweiterung, die von Natalie Chouinard entwickelt wurde, und ihr Hauptmerkmal ist "Allow Trello lists to be displayed vertically or in a grid.".
Erweiterungsscreenshots
[DEPRECATED] List Layouts for Trello-Erweiterungs-CRX-Datei herunterladen
Laden Sie [DEPRECATED] List Layouts for Trello-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
***DEPRECATED***
This Chrome extension is now deprecated. Please consider these alternatives:
Grid Layout for Trello: https://userstyles.org/styles/271254/grid-layout-for-trello
Vertical Layout for Trello: https://userstyles.org/styles/271256/vertical-layout-for-trello
***DEPRECATED***
The List Layouts for Trello extension adds a button to your Chrome toolbar allowing you to toggle the Trello board layout from horizontal to grid to vertical by clicking the icon. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | aldklnbenbdgfgfbflalmlddkkndgnlc |
| Offizielle URL | https://chromewebstore.google.com/detail/deprecated-list-layouts-f/aldklnbenbdgfgfbflalmlddkkndgnlc |
| Beschreibung | Allow Trello lists to be displayed vertically or in a grid. |
| Dateigröße | 10.65 KB |
| Installationsanzahl | 51,027 |
| Aktuelle Version | 4.0 |
| Letztes Update | 2023-10-31 |
| Veröffentlichungsdatum | 2019-07-27 |
| Bewertung | 4.63/5 Insgesamt 192 Bewertungen |
| Entwickler | Natalie Chouinard |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/sudonatalie/layout-trello |
| Hilfeseite URL | https://github.com/sudonatalie/layout-trello/issues |
| Unterstützte Sprachen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "[DEPRECATED] List Layouts for Trello",
"description": "Allow Trello lists to be displayed vertically or in a grid.",
"version": "4.0",
"author": "Natalie Chouinard",
"icons": {
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"background": {
"scripts": [
"js\/background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/trello.com\/b\/*"
],
"css": [
"css\/layout.css"
],
"js": [
"js\/init.js"
]
}
],
"permissions": [
"*:\/\/trello.com\/b\/*",
"declarativeContent",
"storage",
"webNavigation"
],
"page_action": {
"default_title": "List Layouts for Trello"
},
"commands": {
"_execute_page_action": {
"suggested_key": {
"default": "Ctrl+Shift+L",
"mac": "MacCtrl+Shift+L"
}
}
}
} | |