Redmine Notification
Redmine notification tools
ما هو Redmine Notification؟
Redmine Notification هو إضافة Chrome تم تطويرها بواسطة zhixin wen، والميزة الرئيسية لها هي "Redmine notification tools".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Redmine Notification
قم بتنزيل ملفات الامتداد Redmine Notification بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
# 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]
معلومات أساسية عن التمديد
الاسم | Redmine Notification |
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 |
عنوان صفحة المساعدة | 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" ] } |