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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } ] } |