Enhanced OpenAir Timesheets
Improves the interface for OpenAir Timesheets.
Enhanced OpenAir Timesheetsคืออะไร?
Enhanced OpenAir Timesheets เป็นส่วนขยายของ Chrome ที่พัฒนาโดย JEC006 และคุณลักษณะหลักของมันคือ "Improves the interface for OpenAir Timesheets."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Enhanced OpenAir Timesheets
ดาวน์โหลดไฟล์ส่วนขยาย Enhanced OpenAir Timesheets ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Please Note - This DOES NOT work with the new OpenAir interface. I am working to update it, but the time to completion is unknown as I have a large number of other commitments. Provides styling and functionality enhancements for OpenAir timesheet functionality. Focused on the "Grid"/Edit screen - this extension adds: * Chosen (improved selects) for selecting project and task * Inline timers for each entry * Inline notes functionality And adds Bootstrap and theming to make the experience more enjoyable and easier to use. Changelog: 0.4 - Added Autosave and Improved notes functionality. Fixed various minor issues. 0.5 - Fixed issue with chosen selects being inline 0.6 - Added options page with slimline option 0.7 - Makes some table styling more specific to the timesheet page to avoid conflicts with other screens 0.7.1 - Minor theming cleanup 0.8 - Added a single line version (currently does not include timers) 0.9 - Highlight today. Improved theming on inactive days. Made storage per timesheet id. 0.9.1 - Fixed issue with timers disappearing on multimonth spreadsheets 0.10 - Added Calendar overview table which sums the hours for the time period by project and task. Fixed issues with timesheet page tables being too wide, themed the submission workflow more. 0.11 - Fixed a small issue with parsing some calendar entries, added some better report theming. 0.12 - Removed chosen for the time being as Open Air has done something which conflicts with chosen and breaks loading of project tasks
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Enhanced OpenAir Timesheets |
ID | cndbpehenhdahdpiodadlihdkofcakkm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/enhanced-openair-timeshee/cndbpehenhdahdpiodadlihdkofcakkm |
คำอธิบาย | Improves the interface for OpenAir Timesheets. |
ขนาดไฟล์ | 512 KB |
จำนวนการติดตั้ง | 219 |
เวอร์ชันปัจจุบัน | 0.13 |
อัปเดตครั้งล่าสุด | 2013-09-23 |
วันที่เผยแพร่ | 2013-09-23 |
คะแนน | 4.47/5 รวมทั้งหมด 15 คะแนน |
ผู้พัฒนา | JEC006 |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Enhanced OpenAir Timesheets", "version": "0.13", "manifest_version": 2, "description": "Improves the interface for OpenAir Timesheets.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "https:\/\/www.openair.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.openair.com\/*" ], "css": [ "lib\/bootstrap\/css\/bootstrap.min.css", "lib\/chosen\/chosen.css", "css\/timesheets.css", "css\/enhancements.css" ], "js": [ "lib\/jquery-1.8.3.min.js", "lib\/chosen\/chosen.jquery.min.js", "lib\/bootstrap\/js\/bootstrap.min.js", "js\/bootstrapify.js" ] }, { "matches": [ "https:\/\/www.openair.com\/timesheet.pl*" ], "js": [ "js\/timesheets.js", "js\/entries.js" ] }, { "matches": [ "https:\/\/www.openair.com\/mycalendar.pl*" ], "js": [ "js\/calendar.js" ], "css": [ "lib\/bootstrap\/css\/bootstrap.min.css", "css\/calendar.css" ] } ], "options_page": "options.html", "background": { "scripts": [ "js\/getOptions.js" ], "persistent": false } } |