Fill my timesheet!
Helper extension to fill out timesheet form. Currently supports Purely HR timesheet form.
Fill my timesheet!คืออะไร?
Fill my timesheet! เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Marc R และคุณลักษณะหลักของมันคือ "Helper extension to fill out timesheet form. Currently supports Purely HR timesheet form."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fill my timesheet!
ดาวน์โหลดไฟล์ส่วนขยาย Fill my timesheet! ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Helper extension to fill out timesheet form. It allows to set default reports to be used to fill the timesheet report in 3 clicks. A report has the following fields: time-in, time-out, comment as well as which days of the week the values should be set in the report. Currently supports Purely HR timesheet form.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Fill my timesheet! |
ID | ghjamlegpfehemlapljopkoaacihgapg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/fill-my-timesheet/ghjamlegpfehemlapljopkoaacihgapg |
คำอธิบาย | Helper extension to fill out timesheet form. Currently supports Purely HR timesheet form. |
ขนาดไฟล์ | 207 KB |
จำนวนการติดตั้ง | 17 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2020-04-11 |
วันที่เผยแพร่ | 2020-04-11 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Marc R |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://github.com/marc-ed-raffalli/fill-my-timesheet/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "version": "1.0.1", "default_locale": "en", "manifest_version": 2, "icons": { "128": "images\/fmt-icon.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.purelyhr.com\/*" ], "js": [ "shared.js", "content.js", "content-purely-hr.js" ] } ], "page_action": { "default_title": "Complete form to automatically fill the timesheet", "default_popup": "popup.html" }, "options_page": "options.html", "permissions": [ "activeTab", "tabs", "storage" ] } |