Trello Card Printer

This extension populates print-ready cards for use with Agile sprint boards.

Trello Card Printer란 무엇입니까?

Trello Card Printer은(는) thesheps에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension populates print-ready cards for use with Agile sprint boards."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This simple chrome extension generates print-ready cards for your sprint backlog.  It integrates seamlessly into your Trello board, and allows for the selection of different colours and categories for your tickets.

Recent Changes:
- Adds some other fields woo!
- Adds fix to pull changes from local storage                    

확장 프로그램 기본 정보

이름 Trello Card Printer Trello Card Printer
ID dakpbdiplbbpkiejkbdebphiajboajic
공식 URL https://chromewebstore.google.com/detail/trello-card-printer/dakpbdiplbbpkiejkbdebphiajboajic
설명 This extension populates print-ready cards for use with Agile sprint boards.
파일 크기 251 KB
설치 횟수 852
현재 버전 2.4
최근 업데이트 2019-06-08
출시 날짜 2019-06-08
평점 3.75/5 총 8 개의 평점
개발자 thesheps
결제 유형 free
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello Card Printer",
    "description": "This extension populates print-ready cards for use with Agile sprint boards.",
    "version": "2.4",
    "short_name": "Trello Card Printer",
    "browser_action": {
        "default_icon": "src\/img\/icon.png",
        "default_popup": "src\/popup.html",
        "default_title": "Print Trello Cards"
    },
    "icons": {
        "128": "src\/img\/extension-icon.png"
    },
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        "src\/settings.html",
        "src\/popup.html"
    ],
    "options_page": "src\/settings.html",
    "content_scripts": [
        {
            "js": [
                "lib\/jquery.min.js"
            ],
            "matches": [
                "https:\/\/trello.com\/b\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "src\/scripts\/background.js"
        ]
    }
}