Shortcuts for Trello
Adds more extensions to Trello
什麼是Shortcuts for Trello?
Shortcuts for Trello是由https://bulkan-evcimen.com開發的Chrome擴展程式,該擴展的主要功能是“Adds more extensions to Trello”。
擴展截圖
下載Shortcuts for Trello擴展crx文件
下載Shortcuts for Trello擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 擴展基本資訊
| 名稱 | |
| ID | pfkeglfbhfmlnapfjfjfkiipclpmanim |
| 官方網址 | https://chromewebstore.google.com/detail/shortcuts-for-trello/pfkeglfbhfmlnapfjfjfkiipclpmanim |
| 簡介 | Adds more extensions to Trello |
| 檔案大小 | 58.22 KB |
| 安裝次數 | 578 |
| 目前版本 | 1.3.0 |
| 更新時間 | 2016-12-13 |
| 上架時間 | 2016-12-13 |
| 評分 | 4.50/5 共 6 次評分 |
| 開發者 | https://bulkan-evcimen.com |
| 付費類型 | free |
| 擴展官網 | https://github.com/bulkan/trello-shortcuts-plus |
| 說明頁面URL | https://github.com/bulkan/trello-shortcuts-plus/issues |
| 支援的語言 | 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"
}
}
} | |