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ファイルをダウンロード

Jira Table Width Fixer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
}