Shortcuts for Trello
Adds more extensions to Trello
Was ist Shortcuts for Trello?
Shortcuts for Trello ist eine Chrome-Erweiterung, die von https://bulkan-evcimen.com entwickelt wurde, und ihr Hauptmerkmal ist "Adds more extensions to Trello".
Erweiterungsscreenshots
Shortcuts for Trello-Erweiterungs-CRX-Datei herunterladen
Laden Sie Shortcuts 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
Extension that adds more keyboard shortcuts Trello. After installing please configure your shortcuts via the `Keyboard Shortcuts` dialog accessed from the bottom of chrome://extensions # Shortcuts While hovering over a card; * Copy the link (permalink) to the clipboard * Open the Move card popup dialog * Open the Copy card popup dialog * Move to the top the list While not hovering over a card; * Open the notifications dialog * Open "new board menu" While hovering over a list; * Scroll to the top of the list * Scroll to the bottom the list * Collapse list - Issues & Requests Please submit your issues & requests at https://github.com/bulkan/shortcuts-for-trello/issues http://bulkan-evcimen.com
Grundlegende Informationen zur Erweiterung
Name | Shortcuts for Trello |
ID | pfkeglfbhfmlnapfjfjfkiipclpmanim |
Offizielle URL | https://chromewebstore.google.com/detail/shortcuts-for-trello/pfkeglfbhfmlnapfjfjfkiipclpmanim |
Beschreibung | Adds more extensions to Trello |
Dateigröße | 58.22 KB |
Installationsanzahl | 578 |
Aktuelle Version | 1.3.0 |
Letztes Update | 2016-12-13 |
Veröffentlichungsdatum | 2016-12-13 |
Bewertung | 4.50/5 Insgesamt 6 Bewertungen |
Entwickler | https://bulkan-evcimen.com |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/bulkan/trello-shortcuts-plus |
Hilfeseite URL | https://github.com/bulkan/trello-shortcuts-plus/issues |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Shortcuts for Trello", "version": "1.3.0", "manifest_version": 2, "description": "Adds more extensions to Trello", "homepage_url": "https:\/\/github.com\/bulkan\/shortcuts-for-trello", "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "default_locale": "en", "background": { "page": "src\/bg\/background.html", "persistent": false }, "permissions": [ "tabs", "clipboardWrite" ], "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "src\/inject\/inject.js", "vendor\/jquery-2.1.1.min.js" ] } ], "commands": { "movecard": { "description": "Show the Move dialog menu" }, "movecardup": { "description": "Move card up one position" }, "movecarddown": { "description": "Move card down one position" }, "copycard": { "description": "Show the Copy dialog menu" }, "yank": { "description": "Copy short URL" }, "movecardtop": { "description": "Move card to top" }, "notifications": { "description": "Show notifications" }, "scrolltop": { "description": "Scroll to top of list" }, "scrollbottom": { "description": "Scroll to bottom of list" }, "collapselist": { "description": "Collapse a list" }, "newboard": { "description": "Create a new board" } } } |