Daily Budget of Cibus Sodexo
Reports daily balance for Cibus MySodex
Daily Budget of Cibus Sodexoคืออะไร?
Daily Budget of Cibus Sodexo เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Shalom Craimer และคุณลักษณะหลักของมันคือ "Reports daily balance for Cibus MySodex"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Daily Budget of Cibus Sodexo
ดาวน์โหลดไฟล์ส่วนขยาย Daily Budget of Cibus Sodexo ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
My work gave me a food budget through Cibus Sodexo (AKA "MySodexo"), and as many other working people, I often wanted to know how much money could I spend on every given day. Although Cibus reports the remaining monthly balance, that doesn't tell me how many work days are in the month, and how much I have to spend in each day. So here's my little extension to do that for you. (I've posted this on the Store after being asked by friends to make the extension public.) It's meant to be a time-saver, to avoid having to do those calculations manually every day. Once you log in o MySodexo, it will show your budget for the day beside your username. I usually update the extension when something stops working (usually because Cibus changes the site, or someone finds a bug.)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Daily Budget of Cibus Sodexo |
ID | eljaldjkbmfliphngmjfkhlebegfpebi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/daily-budget-of-cibus-sod/eljaldjkbmfliphngmjfkhlebegfpebi |
คำอธิบาย | Reports daily balance for Cibus MySodex |
ขนาดไฟล์ | 214 KB |
จำนวนการติดตั้ง | 66 |
เวอร์ชันปัจจุบัน | 0.0.11 |
อัปเดตครั้งล่าสุด | 2020-11-19 |
วันที่เผยแพร่ | 2020-06-10 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Shalom Craimer |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/scraimer/mysodexo-spending-planner |
URL หน้าช่วยเหลือ | https://github.com/scraimer/mysodexo-spending-planner/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Daily Budget of Cibus Sodexo", "version": "0.0.11", "manifest_version": 2, "description": "Reports daily balance for Cibus MySodex", "icons": { "128": "icon-128x128.png", "48": "icon-48x48.png", "16": "icon-16x16.png" }, "page_action": [], "permissions": [ "https:\/\/www.mysodexo.co.il\/*", "storage" ], "options_ui": { "page": "options.html", "open_in_tab": true }, "content_scripts": [ { "matches": [ "https:\/\/www.mysodexo.co.il\/*" ], "css": [ "content.css", "jquery-ui.min.css", "jquery-ui.structure.min.css", "jquery-ui.theme.min.css", "jquery-ui.multidatespicker.css" ], "js": [ "jquery-1.8.2.js", "jquery-ui.min.js", "jquery-ui.multidatespicker.js", "mysodexo-planner.js" ], "run_at": "document_start" } ] } |