Class Link Check for Google Classroom™

Checks for, opens and alerts the user about the meeting link being in the Google Classroom class.

Class Link Check for Google Classroom™คืออะไร?

Class Link Check for Google Classroom™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://arihant25.github.io/class-link-check และคุณลักษณะหลักของมันคือ "Checks for, opens and alerts the user about the meeting link being in the Google Classroom class."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Class Link Check for Google Classroom™

ดาวน์โหลดไฟล์ส่วนขยาย Class Link Check for Google Classroom™ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Does your school use Google Classroom? Are you tired of having to check for the link before the class starts? Do you want to avoid spending your time waiting for class to start?

Then this is the solution to your problems! 

Class Link Check is an extension for your browser that automatically checks if the meeting link for the class has come. It even opens the class and alerts you to join it!

How to Use:

1. Download the extension by clicking on the Add to Chrome button above

2. Before your class starts, open the Google Classroom page of your class and refresh it once again.

3. Sit back and relax while we handle the class link!

You can customize it by clicking on the extension. For example, you can decide whether to open the class when it starts, or to get a notification on your computer, or do both.

More features are coming very soon, like automatically choosing which account you want to use for your classes.

Believe me, I'm a student and I myself use this extension to make my life easier!
Download this extension today and make online classes fun again!

By creating this extension, I hope I'd be able to relieve some of your stress in these trying times. If this extension helped you, consider donating to ensure its continued development. 95% of donations will be given to charities.
Donate here: https://www.buymeacoffee.com/arihanttr

Class Link Check does not collect any personal information. It also does not transmit any data off your computer. 
Google Classroom is a trademark of Google Inc. Use of this trademark is subject to Google Brand Permissions.

Created by Arihant Tripathy and hermitish.                    

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

ชื่อ Class Link Check for Google Classroom™ Class Link Check for Google Classroom™
ID handoaehkgiindlkfodligcljlfnncnd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/class-link-check-for-goog/handoaehkgiindlkfodligcljlfnncnd
คำอธิบาย Checks for, opens and alerts the user about the meeting link being in the Google Classroom class.
ขนาดไฟล์ 1.22 MB
จำนวนการติดตั้ง 80
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2023-06-13
วันที่เผยแพร่ 2021-06-07
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://arihant25.github.io/class-link-check
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://amimappy.github.io/class-link-check
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Class Link Check for Google Classroom\u2122",
    "description": "Checks for, opens and alerts the user about the meeting link being in the Google Classroom class.",
    "version": "1.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "backgroundScript.js"
    },
    "icons": {
        "16": ".\/logos\/Meet Check Icon16.png",
        "48": ".\/logos\/Meet Check Icon48.png",
        "128": ".\/logos\/Meet Check Icon.png"
    },
    "action": {
        "default_popup": ".\/popup\/popup.html",
        "default_icon": {
            "16": ".\/logos\/Meet Check Icon16.png",
            "32": ".\/logos\/Meet Check Icon48.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/_meet\/*",
                "https:\/\/meet.google.com\/lookup\/*",
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "meetingPage.js"
            ]
        },
        {
            "matches": [
                "https:\/\/classroom.google.com\/u\/*\/c\/*",
                "https:\/\/classroom.google.com\/c\/*"
            ],
            "js": [
                "classroomPage.js"
            ]
        },
        {
            "matches": [
                "https:\/\/accounts.google.com\/AccountChooser\/*"
            ],
            "js": [
                "accountChooserPage.js"
            ]
        }
    ],
    "permissions": [
        "notifications"
    ]
}