SHHO Dining AutoReg

This extension is for registering S.H.Ho communal dining.

SHHO Dining AutoRegคืออะไร?

SHHO Dining AutoReg เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sanebow และคุณลักษณะหลักของมันคือ "This extension is for registering S.H.Ho communal dining."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SHHO Dining AutoReg

ดาวน์โหลดไฟล์ส่วนขยาย SHHO Dining AutoReg ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        S.H.Ho College Communal Dining Registration Extension for Chrome

Registering communal dinging every month is such a pain since it needs hundreds of clicks.Now, you don't have to click repeatedly any more, instead, every thing will proceed automatically by the extension. Only thing you should do is having a cup of coffee and wait.

Details and source code can be found here: https://github.com/SaneBow/shhoDinningReg


善衡書院共膳自動Reg插件

Reg共膳無需再一次次重複點擊,只需選擇所需項目,一切會自動進行,解放你的雙手。

源碼及更多信息請查看:https://github.com/SaneBow/shhoDiningReg                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ SHHO Dining AutoReg SHHO Dining AutoReg
ID dbdccejonhogcipmpiaefdnbmioiffng
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/shho-dining-autoreg/dbdccejonhogcipmpiaefdnbmioiffng
คำอธิบาย This extension is for registering S.H.Ho communal dining.
ขนาดไฟล์ 72.54 KB
จำนวนการติดตั้ง 35
เวอร์ชันปัจจุบัน 1.4.3
อัปเดตครั้งล่าสุด 2015-10-04
วันที่เผยแพร่ 2015-10-04
คะแนน 4.92/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา sanebow
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/SaneBow/shhoDinningReg
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SHHO Dining AutoReg",
    "description": "This extension is for registering S.H.Ho communal dining.",
    "version": "1.4.3",
    "author": "X.B.",
    "background": {
        "scripts": [
            "jquery-2.1.1.min.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/cloud.itsc.cuhk.edu.hk\/*",
                "http:\/\/cloud.itsc.cuhk.edu.hk\/*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "myContentScript.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "page_action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html",
        "default_title": "Dinning Auto Reg"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/cuhk.me\/*"
    ]
}