Jira Table Width Fixer
Simple extension that gives Jira table columns a minimum width of 100 pixels.
Wat is Jira Table Width Fixer?
Jira Table Width Fixer is een Chrome-extensie ontwikkeld door gabehodges, en de belangrijkste functie is "Simple extension that gives Jira table columns a minimum width of 100 pixels.".
Download het CRX-bestand van de extensie Jira Table Width Fixer
Download Jira Table Width Fixer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | lgbgknkgpchdholdabagddphgaildolf |
| Officiële URL | https://chromewebstore.google.com/detail/jira-table-width-fixer/lgbgknkgpchdholdabagddphgaildolf |
| Beschrijving | Simple extension that gives Jira table columns a minimum width of 100 pixels. |
| Bestandsgrootte | 43.09 KB |
| Aantal Installaties | 85 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2018-09-05 |
| Publicatiedatum | 2018-09-05 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | gabehodges |
| Betalingswijze | free |
| Ondersteunde Talen | 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
} | |