Trello Horizontal Lists
Turns Trello Lists Horizontal so they can be used for vertical comparisons.
Was ist Trello Horizontal Lists?
Trello Horizontal Lists ist eine Chrome-Erweiterung, die von Jordan Walsh entwickelt wurde, und ihr Hauptmerkmal ist "Turns Trello Lists Horizontal so they can be used for vertical comparisons.".
Erweiterungsscreenshots
Trello Horizontal Lists-Erweiterungs-CRX-Datei herunterladen
Laden Sie Trello Horizontal Lists-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
This is a simple plugin that converts a Trello board from listing cards vertically to listing cards horizontally.
This has been built to enable vertical comparisons of cards across different lists vertically and introduces horizontal scroll.
v1.7 - Fixed another flexbox bug after trello update (2023-10-23)
v1.6 - Fixed flexbox bug after trello update
v1.5 - Updated manifest version to v3
- Fixed a bug where board state wasn't loading correctly
- Increased the checking frequency to speed up the extension
v1.4 - Fixed bug with moving cards with images.
v1.3 - Saves state of board in memory
- Remembers the state of a board and loads automatically next time
- Fixed bugs
- Improved performance Grundlegende Informationen zur Erweiterung
| Name | |
| ID | bnjapjcicacmalbgnpnfgclacakagnli |
| Offizielle URL | https://chromewebstore.google.com/detail/trello-horizontal-lists/bnjapjcicacmalbgnpnfgclacakagnli |
| Beschreibung | Turns Trello Lists Horizontal so they can be used for vertical comparisons. |
| Dateigröße | 122 KB |
| Installationsanzahl | 566 |
| Aktuelle Version | 1.7 |
| Letztes Update | 2023-10-23 |
| Veröffentlichungsdatum | 2019-11-04 |
| Bewertung | 4.67/5 Insgesamt 6 Bewertungen |
| Entwickler | Jordan Walsh |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Trello Horizontal Lists",
"version": "1.7",
"description": "Turns Trello Lists Horizontal so they can be used for vertical comparisons.",
"author": "Jordan Walsh ([email protected])",
"permissions": [
"storage"
],
"content_scripts": [
{
"css": [
"styles.css"
],
"js": [
"scripts.js"
],
"matches": [
"https:\/\/trello.com\/*"
]
}
],
"icons": {
"16": "logo.png",
"48": "logo.png",
"128": "logo.png"
}
} | |