Caius Meal booking helper

Once installed, click the "Summary" link in the sidebar. Hover over hall titles to see attendees. Go to the profile page to add…

Caius Meal booking helper क्या है?

Caius Meal booking helper Eric द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Once installed, click the "Summary" link in the sidebar. Hover over hall titles to see attendees. Go to the profile page to add…"।

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

screenshot
screenshot
screenshot

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

crx प्रारूप में Caius Meal booking helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Once installed, click the "Summary" link in the sidebar. Hover over hall titles to see attendees.

Go to the profile page to add friends (one per line), and have their names highlighted in the attendee list.

Want a feature? Ask for it at https://github.com/eric-wieser/caius-meal-booking-extension/issues. Or even just come talk to me.

Changelog:

0.2.6: Hard-code allergens from the Venn as defaults
0.2.5: Fix crash when trying to load allergens if the alert has expired
0.2.4: More updates to work with the 2019 website
0.2.3: Parse dietary requirements
0.2.2: Abbreviate Harvey Court to HC
0.2.1: Updated to work with the 2019 website                    

एक्सटेंशन की मूल जानकारी

नाम Caius Meal booking helper Caius Meal booking helper
ID ecceaajbpiiebgncgbddekmiolllkofa
आधिकारिक URL https://chromewebstore.google.com/detail/caius-meal-booking-helper/ecceaajbpiiebgncgbddekmiolllkofa
विवरण Once installed, click the "Summary" link in the sidebar. Hover over hall titles to see attendees. Go to the profile page to add…
फ़ाइल का आकार 180 KB
स्थापना संख्या 48
वर्तमान संस्करण 0.2.6
अंतिम अपडेट 2019-11-21
प्रकाशन तिथि 2019-11-21
रेटिंग 4.40/5 कुल 5 रेटिंग्स
डेवलपर Eric
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/eric-wieser/caius-meal-booking-extension/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Caius Meal booking helper",
    "version": "0.2.6",
    "icons": {
        "128": "crest.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.mealbookings.cai.cam.ac.uk\/*"
            ],
            "js": [
                "jquery-1.10.2.js",
                "jquery.tmpl.min.js",
                "sugar.js",
                "utils.js",
                "HallType.js",
                "HallSummary.js",
                "main.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "ajax-loader.gif"
    ],
    "permissions": [
        "storage",
        "https:\/\/www.mealbookings.cai.cam.ac.uk\/"
    ],
    "background": {
        "page": "background.html"
    }
}