Redmine Notification
Redmine notification tools
Qu'est-ce que Redmine Notification ?
Redmine Notification est une extension Chrome développée par zhixin wen, et sa fonction principale est "Redmine notification tools".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Redmine Notification
Téléchargez les fichiers d'extension Redmine Notification au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
# 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]
Informations de Base sur l'Extension
Nom | Redmine Notification |
ID | cenhhgabijhpobnfnmkigobcefkmhjbj |
URL Officiel | https://chromewebstore.google.com/detail/redmine-notification/cenhhgabijhpobnfnmkigobcefkmhjbj |
Description | Redmine notification tools |
Taille du Fichier | 647 KB |
Nombre d'Installations | 3,109 |
Version Actuelle | 2.4.2 |
Dernière Mise à Jour | 2019-03-08 |
Date de Publication | 2019-03-08 |
Évaluation | 4.40/5 Total 30 Évaluations |
Développeur | zhixin wen |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/wenzhixin/scutech-redmine |
URL de la Page d'Aide | https://github.com/wenzhixin/scutech-redmine/issues |
Langues Prises en Charge | 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" ] } |