Chronos
Manage timesheets in Tryton
Chronosคืออะไร?
Chronos เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.tryton.org และคุณลักษณะหลักของมันคือ "Manage timesheets in Tryton"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chronos
ดาวน์โหลดไฟล์ส่วนขยาย Chronos ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Encode and manage time-sheet lines from browser to your Tryton server. With Chronos, you can enter quickly the time spend on tasks directly from the browser without having to login to the Tryton server. You will have a summary of the tasks per day including the total of time and could navigate through dates. Chronos works also offline, you can encode new line, update or remove existing. They will be synchronized automatically later when the browser is back online. To setup, you must first register Chronos to your Tryton server with the address, the database and your username. The server must have the timesheet module activated. Once registered, the application must be validated on the user preferences dialog from Tryton. The Tryton server must be configured to accept connection from the extension with this setting: [web] cors = chrome-extension://ikhcoclknebokeabdhaaggmmookkndmp
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Chronos |
ID | ikhcoclknebokeabdhaaggmmookkndmp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/chronos/ikhcoclknebokeabdhaaggmmookkndmp |
คำอธิบาย | Manage timesheets in Tryton |
ขนาดไฟล์ | 303 KB |
จำนวนการติดตั้ง | 331 |
เวอร์ชันปัจจุบัน | 0.8.2 |
อัปเดตครั้งล่าสุด | 2021-02-07 |
วันที่เผยแพร่ | 2019-12-09 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | https://www.tryton.org |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://discuss.tryton.org/privacy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Chronos", "version": "0.8.2", "description": "Manage timesheets in Tryton", "icons": { "16": "icons\/chronos-16.png", "48": "icons\/chronos-48.png", "128": "icons\/chronos-128.png" }, "background": { "scripts": [ "bower_components\/jquery\/dist\/jquery.js", "backend.js", "background.js" ] }, "browser_action": { "browser_style": false, "default_icon": { "16": "icons\/chronos-16.png", "48": "icons\/chronos-48.png", "128": "icons\/chronos-128.png" }, "default_popup": "chronos.html", "default_title": "Enter timesheet", "theme_icons": [ { "light": "icons\/chronos-light.svg", "dark": "icons\/chronos.svg", "size": 16 }, { "light": "icons\/chronos-light.svg", "dark": "icons\/chronos.svg", "size": 32 } ] }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+I" } } }, "permissions": [ "*:\/\/*\/", "alarms" ] } |