Quizlet Rocks

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

什麼是Quizlet Rocks?

Quizlet Rocks是由https://quizlet.rocks開發的Chrome擴展程式,該擴展的主要功能是“A chrome extension that highlights the correct answers, pairs matches, and autofills input fields”。

擴展截圖

screenshot
screenshot
screenshot

下載Quizlet Rocks擴展crx文件

下載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
官方網址 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"
    }
}