Jira Table Width Fixer
Simple extension that gives Jira table columns a minimum width of 100 pixels.
What is Jira Table Width Fixer?
Jira Table Width Fixer is a Chrome extension developed by gabehodges, and its main feature is "Simple extension that gives Jira table columns a minimum width of 100 pixels.".
Download Jira Table Width Fixer Extension CRX File
Download Jira Table Width Fixer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Jira Table Width Fixer |
ID | lgbgknkgpchdholdabagddphgaildolf |
Official URL | https://chromewebstore.google.com/detail/jira-table-width-fixer/lgbgknkgpchdholdabagddphgaildolf |
Description | Simple extension that gives Jira table columns a minimum width of 100 pixels. |
File Size | 43.09 KB |
Installation Count | 85 |
Current Version | 1.0 |
Last Updated | 2018-09-05 |
Publish Date | 2018-09-05 |
Rating | 5.00/5 Total 1 Ratings |
Developer | gabehodges |
Payment Type | free |
Supported Languages | 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 } |