OGD's enhancements for Trello

An extension that counts points on trello cards. We use it at OGD to make trello work just a bit better as a Scrum board. - shows…

OGD's enhancements for Trello란 무엇입니까?

OGD's enhancements for Trello은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that counts points on trello cards. We use it at OGD to make trello work just a bit better as a Scrum board. - shows…"입니다.

확장 프로그램 스크린샷

screenshot

OGD's enhancements for Trello 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        An extension that counts points on trello cards.

We use it at OGD to make trello work just a bit better as a Scrum board.

- shows points typed between parens. (e.g. "improve the world (2)")
- It dims cards that have no points assigned (So everyone's aware that those tasks aren't accounted for in the totals)
- You can use '?' to indicate that the count is not known yet
- If a list has a '?' card it's point total will end in '?' as well
- large numbers are presented in red
- Presents card that have a title starting with '#' like: "card title" as "separator" cards. Use labels to color them.
- Shows the board description using a button that is more discoverable than the trello default
- Allows you to put (B) (I) (D) next to a list title (for indicating (B)acklog, (I)n work and (D)one. It shows lists that are backlog or done using a darker color

Note:

- Doesn't have the point picker in the trello card
- Started out as some adaptations of Scrum for Trello but is mostly different code now.                    

확장 프로그램 기본 정보

이름 OGD's enhancements for Trello OGD's enhancements for Trello
ID cjghgjfldfggplglagdmomhbachkcjhk
공식 URL https://chromewebstore.google.com/detail/ogds-enhancements-for-tre/cjghgjfldfggplglagdmomhbachkcjhk
설명 An extension that counts points on trello cards. We use it at OGD to make trello work just a bit better as a Scrum board. - shows…
파일 크기 215 KB
설치 횟수 103
현재 버전 7.0.2
최근 업데이트 2017-07-19
출시 날짜 2017-07-19
평점 4.63/5 총 8 개의 평점
개발자 Unknown
결제 유형 free
확장 프로그램 웹 사이트 https://www.ogd.nl/diensten/software-ontwikkeling/
도움말 페이지 URL https://github.com/BUS-OGD/OGDs-enhancements-for-Trello
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OGD's enhancements for Trello",
    "version": "7.0.2",
    "description": "",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "jquery-1.7.1.min.js",
                "mutation_summary.js",
                "trelloscrum.js"
            ],
            "css": [
                "trelloscrum.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "showPageAction.js"
        ]
    },
    "permissions": [
        "tabs"
    ],
    "page_action": {
        "default_icon": {
            "19": "images\/ogd-trello19.png",
            "38": "images\/ogd-trello38.png"
        },
        "default_title": "Board settings",
        "default_popup": "popup.html"
    },
    "manifest_version": 2,
    "icons": {
        "128": "images\/ogd-trello128.png"
    }
}