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…".
Снимки экрана расширения
Скачать файл 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 |
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" } } |