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開發的Chrome擴展程式,該擴展的主要功能是“Simple extension that gives Jira table columns a minimum width of 100 pixels.”。
下載Jira Table Width Fixer擴展crx文件
下載Jira Table Width Fixer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | lgbgknkgpchdholdabagddphgaildolf |
| 官方網址 | 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
} | |