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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | Shortcuts for Trello |
ID | pfkeglfbhfmlnapfjfjfkiipclpmanim |
공식 URL | 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" } } } |