Jira Table Width Fixer

Simple extension that gives Jira table columns a minimum width of 100 pixels.

Jira Table Width Fixer란 무엇입니까?

Jira Table Width Fixer은(는) gabehodges에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple extension that gives Jira table columns a minimum width of 100 pixels."입니다.

Jira Table Width Fixer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Atlassian Jira does not seem to do a good job displaying HTML tables generated by users using the Markdown style syntax. This extension prevents columns from displaying too skinny by applying a minimum width of 100 pixels.                    

확장 프로그램 기본 정보

이름 Jira Table Width Fixer Jira Table Width Fixer
ID lgbgknkgpchdholdabagddphgaildolf
공식 URL https://chromewebstore.google.com/detail/jira-table-width-fixer/lgbgknkgpchdholdabagddphgaildolf
설명 Simple extension that gives Jira table columns a minimum width of 100 pixels.
파일 크기 43.09 KB
설치 횟수 85
현재 버전 1.0
최근 업데이트 2018-09-05
출시 날짜 2018-09-05
평점 5.00/5 총 1 개의 평점
개발자 gabehodges
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jira Table Width Fixer",
    "version": "1.0",
    "description": "Simple extension that gives Jira table columns a minimum width of 100 pixels.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "run_at": "document_end",
            "css": [
                "contentCss.css"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon32.png"
    },
    "manifest_version": 2
}