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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 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 της επέκτασης Caius Meal booking helper

Λήψη αρχείων επέκτασης Caius Meal booking helper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
    }
}