ByeClicker

ByeClicker is a Chrome extension that automatically answers iClicker questions for you.

ByeClickerคืออะไร?

ByeClicker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Vaibhav Sharma และคุณลักษณะหลักของมันคือ "ByeClicker is a Chrome extension that automatically answers iClicker questions for you."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ByeClicker

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

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

                        - Automatically answers iClicker poll questions for attendance.
- Can join the class automatically and start answering once the instructor starts the session.
- Selects the answer that the majority of people have answered.
- Works in the background; so you can complete any other work peacefully (or sleep 😴).
- Can answer randomly.
- Automatically stops once the instructor ends the session.

How to use:
- Make sure you've selected the course you wanna use ByeClicker on!
- If you wanna use Auto Join, check the box on the extension and click on Start.
- If you don't wanna use Auto Join, join the class manually and click on Start.
- Use the Random checkbox to answer questions randomly. It can even be used if ByeClicker has already started!
- Type in your email and select the Notify button to start receiving email notifications whenever the class starts, end, or a new question appears.
- Sometimes, instructors show only 3 options on the screen but give 5 options on iClicker, make sure the Random checkbox has not been selected otherwise it can select the 4th and 5th option as well and you'll be the only one in the class to do so 😂.
- ByeClicker will automatically stop once the session ends.
- Reload the page if you wanna use for another course.                    

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

ชื่อ ByeClicker ByeClicker
ID kmnlnlkcacgjkngggifcnalkldgpflic
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/byeclicker/kmnlnlkcacgjkngggifcnalkldgpflic
คำอธิบาย ByeClicker is a Chrome extension that automatically answers iClicker questions for you.
ขนาดไฟล์ 1.27 MB
จำนวนการติดตั้ง 397
เวอร์ชันปัจจุบัน 4.0
อัปเดตครั้งล่าสุด 2024-02-10
วันที่เผยแพร่ 2023-09-26
คะแนน 4.43/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา Vaibhav Sharma
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://byeclicker.com
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ByeClicker",
    "version": "4.0",
    "description": "ByeClicker is a Chrome extension that automatically answers iClicker questions for you.",
    "author": "Vaibhav Sharma",
    "homepage_url": "https:\/\/chromewebstore.google.com\/detail\/byeclicker\/kmnlnlkcacgjkngggifcnalkldgpflic",
    "manifest_version": 3,
    "action": {
        "default_title": "ByeClicker",
        "default_popup": "popup.html",
        "default_icon": ".\/assets\/logo.png"
    },
    "icons": {
        "16": ".\/assets\/logo-16.png",
        "32": ".\/assets\/logo-32.png",
        "48": ".\/assets\/logo-48.png",
        "128": ".\/assets\/logo-128.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/student.iclicker.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/student.iclicker.com\/"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": ".\/background.js"
    }
}