YouTrack Issue Cards Printer

Print issues from JetBrains YouTrack as cards for physical scrum board

YouTrack Issue Cards Printer란 무엇입니까?

YouTrack Issue Cards Printer은(는) Maciej Radzikowski에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Print issues from JetBrains YouTrack as cards for physical scrum board"입니다.

확장 프로그램 스크린샷

screenshot

YouTrack Issue Cards Printer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Create beautiful cards for scrum board from YouTrack issues search results with a single click.
Customize layout and fields to match your needs.

- Go to your YouTrack issues list.
- Filter issues you want to print.
- Click extension icon or print button above issues list to print cards.

Please feel free to suggest new features and report bugs on GitHub.                    

확장 프로그램 기본 정보

이름 YouTrack Issue Cards Printer YouTrack Issue Cards Printer
ID pjcejghclgihlhinleocjojdalhnhckp
공식 URL https://chromewebstore.google.com/detail/youtrack-issue-cards-prin/pjcejghclgihlhinleocjojdalhnhckp
설명 Print issues from JetBrains YouTrack as cards for physical scrum board
파일 크기 34.21 KB
설치 횟수 157
현재 버전 0.4.1
최근 업데이트 2019-05-04
출시 날짜 2019-05-04
평점 5.00/5 총 2 개의 평점
개발자 Maciej Radzikowski
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/m-radzikowski/youtrack-issue-cards-printer
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTrack Issue Cards Printer",
    "description": "Print issues from JetBrains YouTrack as cards for physical scrum board",
    "version": "0.4.1",
    "author": "Maciej Radzikowski",
    "homepage_url": "https:\/\/github.com\/m-radzikowski\/youtrack-issue-cards-printer",
    "icons": {
        "16": "resources\/icon\/icon16.png",
        "32": "resources\/icon\/icon32.png",
        "48": "resources\/icon\/icon48.png",
        "128": "resources\/icon\/icon128.png"
    },
    "background": {
        "scripts": [
            "gtm.js",
            "background\/show-page-action.js",
            "background\/singleton.js",
            "background\/page-action.js"
        ],
        "persistent": false
    },
    "page_action": [],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/replace-print-button.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "",
        "storage",
        "declarativeContent"
    ],
    "options_page": "options.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/code.jquery.com https:\/\/cdnjs.cloudflare.com https:\/\/stackpath.bootstrapcdn.com https:\/\/www.googletagmanager.com https:\/\/www.google-analytics.com; object-src 'self'"
}