Jira Thumbnail

This extension adds thumbnails to tasks in your Jira Agile/Kanban board.

Jira Thumbnail란 무엇입니까?

Jira Thumbnail은(는) Vladislav Dotsenko에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension adds thumbnails to tasks in your Jira Agile/Kanban board."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Jira Thumbnail 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Set up this extension if you want to add thumbnails to task cards in your Jira Agile/Kanban board. Thumbnails will be picked from task's attachment according to extension settings, then built in your Agile/Kanban board page locally.

Instruction:
1) Set up extension.
2) Click on the extension icon. (It will open the options page)
3) On the options page enter your Jira hostname into "Jira URL" field. For example "jira.yourcompany.com", "jira.atlassian.com".
4) Press "Save" button.
5) Go to your Jira Kanban board and you will see that tasks with image attachment inside have thumbnails now.

Additional info:
If your Jira server uses HTTP protocol, add "http://" to your URL. (e.g. "http://jira.yourcompany.com"). In case your Jira server uses any port like ":8080" enter it after URL. (e.g. "jira.yourcompany.com:8080").

Change log:
v.1.0.1
- Fixed width of users avatars.
v.1.0.2
- Added possibility to specify "http://" or "https://" protocols and use custom port in "Jira URL" field.
- Fixed thumbnail position in Jira 8.12.                    

확장 프로그램 기본 정보

이름 Jira Thumbnail Jira Thumbnail
ID noagphikabbpdaljickdeildfjggcnoc
공식 URL https://chromewebstore.google.com/detail/jira-thumbnail/noagphikabbpdaljickdeildfjggcnoc
설명 This extension adds thumbnails to tasks in your Jira Agile/Kanban board.
파일 크기 26.44 KB
설치 횟수 478
현재 버전 1.0.2
최근 업데이트 2020-09-28
출시 날짜 2020-02-17
평점 4.33/5 총 3 개의 평점
개발자 Vladislav Dotsenko
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jira Thumbnail",
    "version": "1.0.2",
    "description": "This extension adds thumbnails to tasks in your Jira Agile\/Kanban board.",
    "author": "Vladislav Dotsenko | [email protected]",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "img_preview_style.css"
    ],
    "browser_action": {
        "default_title": "Click to open options tab.",
        "default_icon": "icon.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}