Super Trello

Adds new features to trello

Super Trello란 무엇입니까?

Super Trello은(는) jrf0110에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds new features to trello"입니다.

Super Trello 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Extra features on top of https://trello.com - Currently adds the ability to browse cards with the arrow keys. With a card open, press down or up to go to the next or previous card in the list. Press right or left to go to the next or previous list on the board.

This is just the first version and I will add new features later.

Source code: https://github.com/jrf0110/super-trello

#### Card Switcher

Use the arrow keys (up/down) to go through cards in a list

#### List Switcher

Use the arrow keys (left/right) to switch lists from the open card view

### Version 1.1 Update

*Version 1.1 changes keybindings to be prefixed with SHIFT*

* Fixes broken keybindings
* Refactored codebase                    

확장 프로그램 기본 정보

이름 Super Trello Super Trello
ID jhmefmkepidkekablipkaemmkinkbain
공식 URL https://chrome.google.com/webstore/detail/jhmefmkepidkekablipkaemmkinkbain
설명 Adds new features to trello
파일 크기 92.02 KB
설치 횟수 62
현재 버전 1.1
최근 업데이트 2017-08-22
출시 날짜 2017-08-22
평점 4.50/5 총 2 개의 평점
개발자 jrf0110
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Super Trello",
    "description": "Adds new features to trello",
    "version": "1.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/b\/*\/*",
                "https:\/\/trello.com\/c\/*\/*"
            ],
            "js": [
                "dist\/super-trello.js"
            ]
        }
    ]
}