Quizlet Rocks

A chrome extension that highlights the correct answers, pairs matches, and autofills input fields

Quizlet Rocksคืออะไร?

Quizlet Rocks เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://quizlet.rocks และคุณลักษณะหลักของมันคือ "A chrome extension that highlights the correct answers, pairs matches, and autofills input fields"

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

screenshot
screenshot
screenshot

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

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

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

                        Rocks Network presents: The official Quizlet Rocks answer tool, Just have this chrome extension installed and it will highlight the correct answer when you are in a quizlet game. it works for any type of Quizlet game, whether that be a Quiz/Homework/Test. Easy to use UI with all of the correct answers clearly highlighted in a way that makes sense. If any problems were to arise you can contact our very active support team at https://rocks.network/discord.
Similar cheat also accessible via game pin at https://quizlet.rocks/.

Quizlet is an American online study application that allows students to study various topics via learning tools and games. It was founded by Andrew Sutherland in October 2005 and released to the public in January 2007. Quizlet trains students via flashcards and various games and tests.                    

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

ชื่อ Quizlet Rocks Quizlet Rocks
ID pgbnfimhfgoibnimmfoeacjehkecgkmk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/quizlet-rocks/pgbnfimhfgoibnimmfoeacjehkecgkmk
คำอธิบาย A chrome extension that highlights the correct answers, pairs matches, and autofills input fields
ขนาดไฟล์ 13.33 KB
จำนวนการติดตั้ง 10,863
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2021-02-27
วันที่เผยแพร่ 2021-02-19
คะแนน 3.50/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา https://quizlet.rocks
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://rocks.network/discord
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quizlet Rocks",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "A chrome extension that highlights the correct answers, pairs matches, and autofills input fields",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/quizlet.com\/live\/*"
            ],
            "run_at": "document_end",
            "js": [
                "live.js"
            ]
        },
        {
            "matches": [
                "https:\/\/quizlet.com\/*\/gravity"
            ],
            "run_at": "document_end",
            "js": [
                "gravity.js"
            ]
        },
        {
            "matches": [
                "https:\/\/quizlet.com\/*\/match"
            ],
            "run_at": "document_end",
            "js": [
                "match.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/quizlet.com\/webapi\/3.2\/game-instances*",
        "webRequest"
    ],
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    }
}