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…
Qu'est-ce que Caius Meal booking helper ?
Caius Meal booking helper est une extension Chrome développée par Eric, et sa fonction principale est "Once installed, click the "Summary" link in the sidebar. Hover over hall titles to see attendees. Go to the profile page to add…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Caius Meal booking helper
Téléchargez les fichiers d'extension Caius Meal booking helper 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
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
Informations de Base sur l'Extension
Nom | Caius Meal booking helper |
ID | ecceaajbpiiebgncgbddekmiolllkofa |
URL Officiel | https://chromewebstore.google.com/detail/caius-meal-booking-helper/ecceaajbpiiebgncgbddekmiolllkofa |
Description | Once installed, click the "Summary" link in the sidebar. Hover over hall titles to see attendees. Go to the profile page to add… |
Taille du Fichier | 180 KB |
Nombre d'Installations | 48 |
Version Actuelle | 0.2.6 |
Dernière Mise à Jour | 2019-11-21 |
Date de Publication | 2019-11-21 |
Évaluation | 4.40/5 Total 5 Évaluations |
Développeur | Eric |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/eric-wieser/caius-meal-booking-extension/issues |
Langues Prises en Charge | 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" } } |