Shortcuts for Trello
Adds more extensions to Trello
¿Qué es Shortcuts for Trello?
Shortcuts for Trello es una extensión de Chrome desarrollada por https://bulkan-evcimen.com, y su función principal es "Adds more extensions to Trello".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Shortcuts for Trello
Descarga archivos de extensión Shortcuts for Trello en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Shortcuts for Trello |
ID | pfkeglfbhfmlnapfjfjfkiipclpmanim |
URL Oficial | https://chromewebstore.google.com/detail/shortcuts-for-trello/pfkeglfbhfmlnapfjfjfkiipclpmanim |
Descripción | Adds more extensions to Trello |
Tamaño del Archivo | 58.22 KB |
Cantidad de Instalaciones | 578 |
Versión Actual | 1.3.0 |
Última Actualización | 2016-12-13 |
Fecha de Publicación | 2016-12-13 |
Calificación | 4.50/5 Total de 6 Calificaciones |
Desarrollador | https://bulkan-evcimen.com |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/bulkan/trello-shortcuts-plus |
URL de la Página de Ayuda | https://github.com/bulkan/trello-shortcuts-plus/issues |
Idiomas Soportados | 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" } } } |