Shortcuts for Trello
Adds more extensions to Trello
Qu'est-ce que Shortcuts for Trello ?
Shortcuts for Trello est une extension Chrome développée par https://bulkan-evcimen.com, et sa fonction principale est "Adds more extensions to Trello".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Shortcuts for Trello
Téléchargez les fichiers d'extension Shortcuts 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
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
Informations de Base sur l'Extension
Nom | Shortcuts for Trello |
ID | pfkeglfbhfmlnapfjfjfkiipclpmanim |
URL Officiel | https://chromewebstore.google.com/detail/shortcuts-for-trello/pfkeglfbhfmlnapfjfjfkiipclpmanim |
Description | Adds more extensions to Trello |
Taille du Fichier | 58.22 KB |
Nombre d'Installations | 578 |
Version Actuelle | 1.3.0 |
Dernière Mise à Jour | 2016-12-13 |
Date de Publication | 2016-12-13 |
Évaluation | 4.50/5 Total 6 Évaluations |
Développeur | https://bulkan-evcimen.com |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/bulkan/trello-shortcuts-plus |
URL de la Page d'Aide | https://github.com/bulkan/trello-shortcuts-plus/issues |
Langues Prises en Charge | 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" } } } |