Trello-Office

project management and time tracking based on trello

Trello-Officeคืออะไร?

Trello-Office เป็นส่วนขยายของ Chrome ที่พัฒนาโดย source lounge และคุณลักษณะหลักของมันคือ "project management and time tracking based on trello"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Trello-Office

ดาวน์โหลดไฟล์ส่วนขยาย Trello-Office ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This services is intended to enable you to log time on your tasks you use in trello.

We are now in a kind of beta state, but the target of the project is to create a add on to trello that has the following features within the environment of the trello homepage:

 - time logging per ticket
 - time estimations per ticket
 - burndown charts per board
 - on page reports, monthly reports and exports to excel
 
We have attached 4 Screens that show what you can do right now, more to come soon:

Screen 1:
  here you can start logging
Screen 2:
  the active item is colored in green
  you can pause logging and continue it later
Screen 3:
  in the status bar you can see how many
  hours have been logged on this board
  just click on this to export an excel
  sheet with all time records
Screen 4:
  in the details overlay there is now also
  a button to start a time log
Screen 5:
  with the brand new save dialog you can
  edit the Date, time and duration, flag
  "billable" and "additional" and add a
  description on saving the time log entry


We are looking forward to get good inspirations from our users :-)

Change-Log:
v1.4: COMING SOON: easy way to add time estimations for burn down chart.
v1.3.1: (27 Mar 2015) Bugfix Release: Fixed some Bugs in the API.
v1.3: (16 Feb 2014)Better save-record dialog and start button in details overlay
v1.2: (02 Feb 2014) Export function and an time sum in the status bar of each board
v1.1: (26 Jan 2014) Initial public release                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Trello-Office Trello-Office
ID adplchojbnceleieilggnpceikjeapjg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/trello-office/adplchojbnceleieilggnpceikjeapjg
คำอธิบาย project management and time tracking based on trello
ขนาดไฟล์ 93.21 KB
จำนวนการติดตั้ง 3,628
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2015-03-27
วันที่เผยแพร่ 2015-03-27
คะแนน 3.93/5 รวมทั้งหมด 14 คะแนน
ผู้พัฒนา source lounge
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Trello-Office",
    "description": "project management and time tracking based on trello",
    "version": "1.3",
    "manifest_version": 2,
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "app.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "jquery-2.0.3.js",
                "trello-script.js"
            ]
        }
    ],
    "icons": {
        "128": "icon_128.png"
    }
}