Jira Table Width Fixer
Simple extension that gives Jira table columns a minimum width of 100 pixels.
Hvad er Jira Table Width Fixer?
Jira Table Width Fixer er en Chrome-udvidelse udviklet af gabehodges, og dens hovedfunktion er "Simple extension that gives Jira table columns a minimum width of 100 pixels.".
Download Jira Table Width Fixer-udvidelses-CRX-fil
Download Jira Table Width Fixer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Jira Table Width Fixer |
ID | lgbgknkgpchdholdabagddphgaildolf |
Officiel URL | https://chromewebstore.google.com/detail/jira-table-width-fixer/lgbgknkgpchdholdabagddphgaildolf |
Beskrivelse | Simple extension that gives Jira table columns a minimum width of 100 pixels. |
Filstørrelse | 43.09 KB |
Antal Installationer | 85 |
Nuværende Version | 1.0 |
Senest Opdateret | 2018-09-05 |
Udgivelsesdato | 2018-09-05 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | gabehodges |
Betalingsmetode | free |
Understøttede Sprog | 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 } |