Shortcuts for Trello
Adds more extensions to Trello
Co to jest Shortcuts for Trello?
Shortcuts for Trello to rozszerzenie Chrome opracowane przez https://bulkan-evcimen.com, a jego główną funkcją jest „Adds more extensions to Trello”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Shortcuts for Trello
Pobierz pliki rozszerzeń Shortcuts for Trello w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | pfkeglfbhfmlnapfjfjfkiipclpmanim |
| Oficjalny URL | https://chromewebstore.google.com/detail/shortcuts-for-trello/pfkeglfbhfmlnapfjfjfkiipclpmanim |
| Opis | Adds more extensions to Trello |
| Rozmiar pliku | 58.22 KB |
| Liczba instalacji | 578 |
| Aktualna Wersja | 1.3.0 |
| Ostatnia Aktualizacja | 2016-12-13 |
| Data Publikacji | 2016-12-13 |
| Ocena | 4.50/5 Łącznie 6 Oceny |
| Deweloper | https://bulkan-evcimen.com |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/bulkan/trello-shortcuts-plus |
| Adres URL Strony Pomocy | https://github.com/bulkan/trello-shortcuts-plus/issues |
| Obsługiwane Języki | 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"
}
}
} | |