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 |
| 官方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
} | |