Redmine Notification
Redmine notification tools
Cos'è Redmine Notification?
Redmine Notification è un'estensione di Chrome sviluppata da zhixin wen, e la sua funzione principale è "Redmine notification tools".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Redmine Notification
Scarica i file di estensione Redmine Notification in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
# 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]
Informazioni di Base sull'Estensione
Nome | Redmine Notification |
ID | cenhhgabijhpobnfnmkigobcefkmhjbj |
URL Ufficiale | https://chromewebstore.google.com/detail/redmine-notification/cenhhgabijhpobnfnmkigobcefkmhjbj |
Descrizione | Redmine notification tools |
Dimensione del File | 647 KB |
Conteggio Installazioni | 3,109 |
Versione Corrente | 2.4.2 |
Ultimo Aggiornamento | 2019-03-08 |
Data di Pubblicazione | 2019-03-08 |
Valutazione | 4.40/5 Totale 30 Valutazioni |
Sviluppatore | zhixin wen |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/wenzhixin/scutech-redmine |
URL della Pagina di Aiuto | https://github.com/wenzhixin/scutech-redmine/issues |
Lingue Supportate | 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" ] } |