Redmine Plus
Adds magic to Redmine.
Redmine Plusคืออะไร?
Redmine Plus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dmsmidt และคุณลักษณะหลักของมันคือ "Adds magic to Redmine."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Redmine Plus
ดาวน์โหลดไฟล์ส่วนขยาย Redmine Plus ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
# Redmine Plus This Chrome and Firefox plugins adds magic to Redmine. It particularly enhances the backlog and taskboard of the Redmine Backlogs plugin. ## Compatibility The following Redmine and plugin versions are tested: - Redmine 2.6.10 - Redmine Backlogs v1.0.6 - Time logger 0.5.4 - Redmine Timesheet Plugin 0.7.0 The following software has been tested to work (at least partially): - Chrome 50+ - Firefox 48+ ## Functionality - Select lists enhanced with the Chosen plugin (project switcher) - Master backlog enhancement - Stories are styled differently based on their status. - Quick links to add a new story and go to the taskboard (new tab). - Creating a new story will actually create a new story and not a deliverable. - Taskboard enhancement - Prefill "Time Entry Comments" of a task with the parent issue id (story) - Prefill "Time Entry User" of a task with the logged in user (no more accidentally booking time for someone else) - Show and navigate the timer in the navigation bar. - Directly start/stop/pause timer from a task. - Visually show the timer status for the active task. - Sticky toolbar. - Colored rows based on the story status. - Bring back easy new task creation by clicking in a "new" cell. - Full issue view - Always show all fields in the "Change properties " fieldset (no more clicking on "more"). - On update, prefill the parent (story) ID in the log comment field. - Timer stop - Prefill the parent (story) ID in the log comment field.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Redmine Plus |
ID | hjpgblaihooeaekehaegopafiofnimep |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/redmine-plus/hjpgblaihooeaekehaegopafiofnimep |
คำอธิบาย | Adds magic to Redmine. |
ขนาดไฟล์ | 76.44 KB |
จำนวนการติดตั้ง | 128 |
เวอร์ชันปัจจุบัน | 0.11.6 |
อัปเดตครั้งล่าสุด | 2017-03-14 |
วันที่เผยแพร่ | 2017-03-14 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | dmsmidt |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Redmine Plus", "description": "Adds magic to Redmine.", "version": "0.11.6", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "applications": { "gecko": { "id": "[email protected]", "strict_min_version": "48.0" } }, "permissions": [ "activeTab", "storage" ], "options_ui": { "page": "options.html", "chrome_style": true, "open_in_tab": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "libraries\/jquery\/jquery-2.2.3.min.js", "libraries\/chosen\/chosen.jquery.js", "redmine-plus_shared.js", "redmine-plus.js" ], "css": [ "libraries\/chosen\/chosen.css", "redmine-plus.css" ], "runt_at": "document_end" } ], "web_accessible_resources": [ "libraries\/chosen\/*.png", "tq-redmine-plus-injected-api.js" ] } |