Daily Budget of Cibus Sodexo
Reports daily balance for Cibus MySodex
Qu'est-ce que Daily Budget of Cibus Sodexo ?
Daily Budget of Cibus Sodexo est une extension Chrome développée par Shalom Craimer, et sa fonction principale est "Reports daily balance for Cibus MySodex".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Daily Budget of Cibus Sodexo
Téléchargez les fichiers d'extension Daily Budget of Cibus Sodexo au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.)
Informations de Base sur l'Extension
Nom | Daily Budget of Cibus Sodexo |
ID | eljaldjkbmfliphngmjfkhlebegfpebi |
URL Officiel | https://chromewebstore.google.com/detail/daily-budget-of-cibus-sod/eljaldjkbmfliphngmjfkhlebegfpebi |
Description | Reports daily balance for Cibus MySodex |
Taille du Fichier | 214 KB |
Nombre d'Installations | 66 |
Version Actuelle | 0.0.11 |
Dernière Mise à Jour | 2020-11-19 |
Date de Publication | 2020-06-10 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | Shalom Craimer |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/scraimer/mysodexo-spending-planner |
URL de la Page d'Aide | https://github.com/scraimer/mysodexo-spending-planner/issues |
Langues Prises en Charge | 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" } ] } |