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文件

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