Shortcuts for Trello

Adds more extensions to Trello

Shortcuts for Trello là gì?

Shortcuts for Trello là một tiện ích mở rộng Chrome được phát triển bởi https://bulkan-evcimen.com, và tính năng chính của nó là "Adds more extensions to Trello".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Shortcuts for Trello

Tải xuống các tệp mở rộng Shortcuts for Trello dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Shortcuts for Trello Shortcuts for Trello
ID pfkeglfbhfmlnapfjfjfkiipclpmanim
URL Chính Thức https://chromewebstore.google.com/detail/shortcuts-for-trello/pfkeglfbhfmlnapfjfjfkiipclpmanim
Mô tả Adds more extensions to Trello
Kích Thước Tệp 58.22 KB
Số Lần Cài Đặt 578
Phiên Bản Hiện Tại 1.3.0
Cập Nhật Lần Cuối 2016-12-13
Ngày Phát Hành 2016-12-13
Đánh Giá 4.50/5 Tổng số 6 Đánh Giá
Nhà Phát Triển https://bulkan-evcimen.com
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/bulkan/trello-shortcuts-plus
URL Trang Trợ Giúp https://github.com/bulkan/trello-shortcuts-plus/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}