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 هو إضافة Chrome تم تطويرها بواسطة gabehodges، والميزة الرئيسية لها هي "Simple extension that gives Jira table columns a minimum width of 100 pixels.".

تحميل ملف CRX للإضافة Jira Table Width Fixer

قم بتنزيل ملفات الامتداد Jira Table Width Fixer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
}