SHHO Dining AutoReg
This extension is for registering S.H.Ho communal dining.
SHHO Dining AutoReg란 무엇입니까?
SHHO Dining AutoReg은(는) sanebow에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension is for registering S.H.Ho communal dining."입니다.
확장 프로그램 스크린샷
SHHO Dining AutoReg 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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\/*" ] } |