Redmine Notification
Redmine notification tools
Wat is Redmine Notification?
Redmine Notification is een Chrome-extensie ontwikkeld door zhixin wen, en de belangrijkste functie is "Redmine notification tools".
Extensie Screenshots
Download het CRX-bestand van de extensie Redmine Notification
Download Redmine Notification-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
# 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]
Basisinformatie over de Extensie
Naam | Redmine Notification |
ID | cenhhgabijhpobnfnmkigobcefkmhjbj |
Officiële URL | https://chromewebstore.google.com/detail/redmine-notification/cenhhgabijhpobnfnmkigobcefkmhjbj |
Beschrijving | Redmine notification tools |
Bestandsgrootte | 647 KB |
Aantal Installaties | 3,109 |
Huidige Versie | 2.4.2 |
Laatst Bijgewerkt | 2019-03-08 |
Publicatiedatum | 2019-03-08 |
Beoordeling | 4.40/5 Totaal 30 Beoordelingen |
Ontwikkelaar | zhixin wen |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/wenzhixin/scutech-redmine |
Help Pagina-URL | https://github.com/wenzhixin/scutech-redmine/issues |
Ondersteunde Talen | 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" ] } |