Daily Budget of Cibus Sodexo

Reports daily balance for Cibus MySodex

Daily Budget of Cibus Sodexo क्या है?

Daily Budget of Cibus Sodexo Shalom Craimer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Reports daily balance for Cibus MySodex"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Daily Budget of Cibus Sodexo एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
        }
    ]
}