Ok, Zoomer
Zoom to your UCLA Zoom classes
Ok, Zoomerคืออะไร?
Ok, Zoomer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย coolguy5530 และคุณลักษณะหลักของมันคือ "Zoom to your UCLA Zoom classes"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ok, Zoomer
ดาวน์โหลดไฟล์ส่วนขยาย Ok, Zoomer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
In the world of online learning, Zoom links have a tendency to spaghetti all over the place because it's a bit inconvenient to store them all in one place. Sometimes, when you have literally 9 classes, it might not even be that helpful help to keep all the links in one place because you have to look up which class you should be going to, and then find the corresponding Zoom link maybe from CCLE, it's an annoying process. With Ok, Zoomer, you can easily add classes directly from your class planner, edit the URL and password if needed, and get directly notified when one of your classes starts. Now you might say, "well why would you use this over some old regular calendar app?". And I'd say that there are two differences that I believe make all the difference. 1. No good calendar app I've found has a feature where it'll notify you when an event starts, AND allow you to click directly on the notification to bring you directly to a link. This extension will do that for your Zoom link. 2. Because you can add classes directly from the class planner (this is after all an extension tailored to UCLA), the extension can automatically detect information about the class, like most importantly, the time and days the class meets, as well as the course title, whether it's a discussion/lecture/seminar/lab, etc. This make the process a lot smoother than having to set up say recurring events in a regular calendar app. Don't worry though; if you don't need those notifications, you can mute them.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | difojhphdkeielekajnflmacfdebhkkk |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/ok-zoomer/difojhphdkeielekajnflmacfdebhkkk |
คำอธิบาย | Zoom to your UCLA Zoom classes |
ขนาดไฟล์ | 917 KB |
จำนวนการติดตั้ง | 34 |
เวอร์ชันปัจจุบัน | 0.0.7 |
อัปเดตครั้งล่าสุด | 2021-01-21 |
วันที่เผยแพร่ | 2020-09-17 |
ผู้พัฒนา | coolguy5530 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Ok, Zoomer", "version": "0.0.7", "description": "Zoom to your UCLA Zoom classes", "permissions": [ "storage", "alarms", "notifications", "tabs" ], "background": { "page": "background\/background.html", "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/ucla.zoom.us\/*" ], "js": [ "assets\/js\/utils.js", "assets\/js\/jquery-3.5.1.min.js", "injectZoom.js" ], "css": [ "zoom.css" ] }, { "matches": [ "https:\/\/be.my.ucla.edu\/ClassPlanner\/ClassPlan.aspx" ], "js": [ "assets\/js\/utils.js", "assets\/js\/jquery-3.5.1.min.js", "injectplanner\/injectPlanner.js", "injectplanner\/highlightCurrent.js", "injectplanner\/injectAdding.js" ], "css": [ "injectplanner\/planner.css" ] } ], "browser_action": { "default_popup": "popup\/popup.html", "default_icon": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" } }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+E", "linux": "Ctrl+Shift+K", "windows": "Ctrl+Shift+E", "mac": "Alt+Shift+P" } } }, "icons": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" }, "web_accessible_resources": [ "assets\/fonts\/*" ], "manifest_version": 2 } |