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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple extension that gives Jira table columns a minimum width of 100 pixels."।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Jira Table Width Fixer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}