Mantis2Trello
Create Trello Cards from Mantis Bug Tracker 0.3 -> Soporte para Url de Mantis sin /mantis/ o /bugs/ en la url
什么是Mantis2Trello?
Mantis2Trello是由https://www.jcnistal.es开发的Chrome扩展程序,该扩展的主要功能是“Create Trello Cards from Mantis Bug Tracker 0.3 -> Soporte para Url de Mantis sin /mantis/ o /bugs/ en la url”。
扩展截图
下载Mantis2Trello扩展crx文件
下载Mantis2Trello扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Create Trello Cards from Mantis Bug Tracker
0.3 -> Soporte para Url de Mantis sin /mantis/ o /bugs/ en la url 扩展基本信息
| 名称 | |
| ID | ddiiaojmncfmdmghfinjfedilkegilom |
| 官方URL | https://chromewebstore.google.com/detail/mantis2trello/ddiiaojmncfmdmghfinjfedilkegilom |
| 简介 | Create Trello Cards from Mantis Bug Tracker 0.3 -> Soporte para Url de Mantis sin /mantis/ o /bugs/ en la url |
| 文件大小 | 50.06 KB |
| 安装次数 | 117 |
| 当前版本 | 0.3 |
| 更新时间 | 2018-11-23 |
| 上架时间 | 2018-11-23 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | https://www.jcnistal.es |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/nikeyes/Mantis2Trello |
| 帮助页面URL | https://github.com/nikeyes/Mantis2Trello/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Mantis2Trello",
"short_name": "Mantis2Trello",
"description": "",
"version": "0.3",
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"16": "Mantis2TrelloIcon16.png",
"48": "Mantis2TrelloIcon48.png",
"128": "Mantis2TrelloIcon128.png"
},
"page_action": {
"default_icon": "Mantis2TrelloIcon16.png",
"default_title": "Click to Create Trello Card with this Mantis."
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"*:\/\/*\/mantis\/view.php*",
"*:\/\/*\/bugs\/view.php*",
"*:\/\/*\/view.php*"
],
"js": [
"jquery.1.7.1.min.js",
"client.js",
"content.js"
],
"run_at": "document_end"
}
],
"permissions": [
"*:\/\/*\/mantis\/view.php*",
"*:\/\/*\/bugs\/view.php*",
"*:\/\/*\/view.php*",
"declarativeContent",
"tabs",
"storage"
],
"content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
} | |