Daily Budget of Cibus Sodexo
Reports daily balance for Cibus MySodex
什麼是Daily Budget of Cibus Sodexo?
Daily Budget of Cibus Sodexo是由Shalom Craimer開發的Chrome擴展程式,該擴展的主要功能是“Reports daily balance for Cibus MySodex”。
擴展截圖
下載Daily Budget of Cibus Sodexo擴展crx文件
下載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 |
官方網址 | 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" } ] } |