Redmine Notification
Redmine notification tools
Was ist Redmine Notification?
Redmine Notification ist eine Chrome-Erweiterung, die von zhixin wen entwickelt wurde, und ihr Hauptmerkmal ist "Redmine notification tools".
Erweiterungsscreenshots
Redmine Notification-Erweiterungs-CRX-Datei herunterladen
Laden Sie Redmine Notification-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
# 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] Grundlegende Informationen zur Erweiterung
| Name | |
| ID | cenhhgabijhpobnfnmkigobcefkmhjbj |
| Offizielle URL | https://chromewebstore.google.com/detail/redmine-notification/cenhhgabijhpobnfnmkigobcefkmhjbj |
| Beschreibung | Redmine notification tools |
| Dateigröße | 647 KB |
| Installationsanzahl | 3,109 |
| Aktuelle Version | 2.4.2 |
| Letztes Update | 2019-03-08 |
| Veröffentlichungsdatum | 2019-03-08 |
| Bewertung | 4.40/5 Insgesamt 30 Bewertungen |
| Entwickler | zhixin wen |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/wenzhixin/scutech-redmine |
| Hilfeseite URL | https://github.com/wenzhixin/scutech-redmine/issues |
| Unterstützte Sprachen | 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"
]
} | |