[DEPRECATED] List Layouts for Trello
Allow Trello lists to be displayed vertically or in a grid.
Qu'est-ce que [DEPRECATED] List Layouts for Trello ?
[DEPRECATED] List Layouts for Trello est une extension Chrome développée par Natalie Chouinard, et sa fonction principale est "Allow Trello lists to be displayed vertically or in a grid.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension [DEPRECATED] List Layouts for Trello
Téléchargez les fichiers d'extension [DEPRECATED] List Layouts for Trello au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
***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.
Informations de Base sur l'Extension
Nom | [DEPRECATED] List Layouts for Trello |
ID | aldklnbenbdgfgfbflalmlddkkndgnlc |
URL Officiel | https://chromewebstore.google.com/detail/deprecated-list-layouts-f/aldklnbenbdgfgfbflalmlddkkndgnlc |
Description | Allow Trello lists to be displayed vertically or in a grid. |
Taille du Fichier | 10.65 KB |
Nombre d'Installations | 51,027 |
Version Actuelle | 4.0 |
Dernière Mise à Jour | 2023-10-31 |
Date de Publication | 2019-07-27 |
Évaluation | 4.63/5 Total 192 Évaluations |
Développeur | Natalie Chouinard |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/sudonatalie/layout-trello |
URL de la Page d'Aide | https://github.com/sudonatalie/layout-trello/issues |
Langues Prises en Charge | 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" } } } } |