Easy Class Break (UCLA)

Find out the classes whose break is not enough to walk to the next class.

Easy Class Break (UCLA)คืออะไร?

Easy Class Break (UCLA) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Qingpeng Li และคุณลักษณะหลักของมันคือ "Find out the classes whose break is not enough to walk to the next class."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Easy Class Break (UCLA)

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

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

                        The extension will check all class breaks in the Class Planner. If the extension find a class whose break is not enough to walk to the next class, that is (break time - walking time) <= 2min, the extension will insert a red button below the location box in the Class Planner to tip you.

The red button will be ["Ori"+ weekday] (not enough time to get next class + the class on which weekday) or ["Dest"+ weekday] (not enough time to go from previous class + the class on which weekday).

Hover over the red button will display more information about next/previous class and time/distance.

Click the icon of the extension will pop up a window for adjusting the remaining time you want to reserve (0-10 min, 2 min is default). The reset button will reset the remaining time to default. Select Tip Button used to select which type tip button appears in the Class Planner. 

Summary table shows BreakTime, WalkTime, ResTime and Distance of every class pairs, and hurry class pair is shown in red. The triangle next to [Summary] can collapse the summary table.

About the extension:
In a quarter, I had a discussion session in Boelter Hall, and next discussion session in Public Affairs Building, it took me a long time to walk, and it is inconveninent to ask TA questions after discussion. Then, the idea of the extension was inspired by the discussion with Jonathan of this situation.

This extension is open-source on https://github.com/qingpeng9802/Easy-Class-Break-UCLA

Acknowledgment:
The Chromium Authors' Mappy chrome extension
Inspired by Robert Ursua and Preetham Narayanareddy's Easy BruinWalk Ratings (UCLA) extension
Stack Overflow's answer contributor

Disclaimer:
This extension uses Google Analytics to collect usage statistics to help improve user experience. If you want to opt-out of Google Analytics tracking, please visit http://tools.google.com/dlpage/gaoptout.                    

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

ชื่อ Easy Class Break (UCLA) Easy Class Break (UCLA)
ID cinodjcaojlhljfgnmcmbfogamicehmo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/easy-class-break-ucla/cinodjcaojlhljfgnmcmbfogamicehmo
คำอธิบาย Find out the classes whose break is not enough to walk to the next class.
ขนาดไฟล์ 65.21 KB
จำนวนการติดตั้ง 325
เวอร์ชันปัจจุบัน 0.4.7
อัปเดตครั้งล่าสุด 2021-07-01
วันที่เผยแพร่ 2020-06-18
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Qingpeng Li
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Easy Class Break (UCLA)",
    "version": "0.4.7",
    "description": "Find out the classes whose break is not enough to walk to the next class.",
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "addressList.js",
            ".\/background\/distanceMat.js",
            ".\/background\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.my.ucla.edu\/ClassPlanner\/*"
            ],
            "css": [
                ".\/content_scripts\/showTips.css"
            ],
            "js": [
                "addressList.js",
                ".\/content_scripts\/jquery-3.6.0.slim.min.js",
                ".\/content_scripts\/getClassInfo.js",
                ".\/content_scripts\/processClassInfo.js",
                ".\/content_scripts\/showTips.js",
                ".\/content_scripts\/contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        ".\/distanceMat.json"
    ],
    "permissions": [
        "storage"
    ],
    "page_action": {
        "default_icon": "icon.png",
        "default_popup": ".\/popup\/popup.html"
    },
    "manifest_version": 2,
    "content_security_policy": "default-src 'self' https:\/\/www.google-analytics.com; style-src 'self'; script-src 'self' https:\/\/www.google-analytics.com"
}