Redmine Notification
Redmine notification tools
什么是Redmine Notification?
Redmine Notification是由zhixin wen开发的Chrome扩展程序,该扩展的主要功能是“Redmine notification tools”。
扩展截图
下载Redmine Notification扩展crx文件
下载Redmine Notification扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
# Redmine Notification
Redmine notification tools for chrome extension.
## Features
* See the problem and the discuss directly through the plugin.
* Real time updates and automatically prompted to the problem.
* Support for multiple redmine, centralized management issues.
* Support for custom issue roles (developer and tester).
* issue status and issue number.
* Support offline viewing problems.
2009-2020 www.scutech.com
mail to: [email protected] 扩展基本信息
| 名称 | |
| ID | cenhhgabijhpobnfnmkigobcefkmhjbj |
| 官方URL | https://chromewebstore.google.com/detail/redmine-notification/cenhhgabijhpobnfnmkigobcefkmhjbj |
| 简介 | Redmine notification tools |
| 文件大小 | 647 KB |
| 安装次数 | 3,109 |
| 当前版本 | 2.4.2 |
| 更新时间 | 2019-03-08 |
| 上架时间 | 2019-03-08 |
| 评分 | 4.40/5 共30次评分 |
| 开发者 | zhixin wen |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/wenzhixin/scutech-redmine |
| 帮助页面URL | https://github.com/wenzhixin/scutech-redmine/issues |
| 支持的语言 | en |
| manifest.json | |
{
"name": "Redmine Notification",
"description": "Redmine notification tools",
"version": "2.4.2",
"manifest_version": 2,
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"icons": {
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon128.png",
"default_popup": "popup.html"
},
"background": {
"page": "background.html"
},
"options_page": "options.html",
"permissions": [
"http:\/\/*\/",
"https:\/\/*\/",
"notifications"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"assets\/font-awesome\/css\/font-awesome.min.css",
"css\/redmine.css"
],
"js": [
"assets\/jquery.min.js",
"assets\/jsonlint.js",
"js\/redmine.js"
]
}
],
"web_accessible_resources": [
"assets\/jquery.min.js",
"assets\/ZeroClipboard.js",
"assets\/ZeroClipboard.swf",
"js\/copy.js",
"assets\/font-awesome\/fonts\/fontawesome-webfont.eot",
"assets\/font-awesome\/fonts\/fontawesome-webfont.woff",
"assets\/font-awesome\/fonts\/fontawesome-webfont.ttf"
]
} | |