UIMS Attendance Tracker
Helps you calculate how much you're away from achieving a perfect attendance.
UIMS Attendance Tracker란 무엇입니까?
UIMS Attendance Tracker은(는) Aryan Jasala에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Helps you calculate how much you're away from achieving a perfect attendance."입니다.
확장 프로그램 스크린샷
UIMS Attendance Tracker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Ever considered calculating how much classes you are away from 75% (to save your life) or 90% (to achieve that 2 marks :P ) by opening your CUIMS attendance and using a pen/paper and calculator everyday? Too much hassle isn't it? Well we can simplify your work just by adding all that necessary information to your account automatically. This extension would automatically create columns with necessary information every time you load the CUIMS attendance page and make the necessary information easy to understand. * Also added to show Overall Attendance on attendance page. Privacy Policy. - The UIMS Attendance Tracker never logs in any of your password. - The UIMS Attendance Tracker may save user data for analytics purpose. - The UIMS Attendance Tracker never interferes with the real attendance of the student.
확장 프로그램 기본 정보
이름 | UIMS Attendance Tracker |
ID | mcmacpjeheadllinnoljglkemmkdnang |
공식 URL | https://chromewebstore.google.com/detail/uims-attendance-tracker/mcmacpjeheadllinnoljglkemmkdnang |
설명 | Helps you calculate how much you're away from achieving a perfect attendance. |
파일 크기 | 152 KB |
설치 횟수 | 266 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2020-09-08 |
출시 날짜 | 2020-09-05 |
평점 | 5.00/5 총 15 개의 평점 |
개발자 | Aryan Jasala |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "UIMS Attendance Tracker", "version": "1.0.2", "manifest_version": 2, "description": "Helps you calculate how much you're away from achieving a perfect attendance.", "icons": { "16": "img\/16.png", "32": "img\/32.png", "48": "img\/48.png", "128": "img\/128.png" }, "permissions": [ "storage", "tabs" ], "browser_action": { "default_icon": { "19": "img\/16.png", "38": "img\/48.png" }, "default_title": "UIMS Attendance Tracker", "default_popup": "options.html" }, "content_scripts": [ { "matches": [ "*:\/\/uims.cuchd.in\/*", "*:\/\/www.uims.cuchd.in\/*" ], "js": [ "assets\/jquery.js", "assets\/crypto.js", "assets\/main.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "assets\/crypto.js", "assets\/background.js" ] }, "externally_connectable": { "matches": [ "*:\/\/uims.cuchd.in\/uims\/*" ] }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "options_ui": { "page": "options.html", "chrome_style": true } } |