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…

O que é Caius Meal booking helper?

Caius Meal booking helper é uma extensão do Chrome desenvolvida por Eric, e sua principal característica é "Once installed, click the "Summary" link in the sidebar. Hover over hall titles to see attendees. Go to the profile page to add…".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Caius Meal booking helper

Baixe arquivos de extensão Caius Meal booking helper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Caius Meal booking helper Caius Meal booking helper
ID ecceaajbpiiebgncgbddekmiolllkofa
URL Oficial https://chromewebstore.google.com/detail/caius-meal-booking-helper/ecceaajbpiiebgncgbddekmiolllkofa
Descrição Once installed, click the "Summary" link in the sidebar. Hover over hall titles to see attendees. Go to the profile page to add…
Tamanho do Arquivo 180 KB
Contagem de Instalações 48
Versão Atual 0.2.6
Última Atualização 2019-11-21
Data de Publicação 2019-11-21
Classificação 4.40/5 Total de 5 Avaliações
Desenvolvedor Eric
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/eric-wieser/caius-meal-booking-extension/issues
Idiomas Suportados 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"
    }
}