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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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

Caius Meal booking helper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}