Quizlet Hacker

Automatically completes every quizlet activity!

Co to jest Quizlet Hacker?

Quizlet Hacker to rozszerzenie Chrome opracowane przez Llama Dev, a jego główną funkcją jest „Automatically completes every quizlet activity!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Quizlet Hacker

Pobierz pliki rozszerzeń Quizlet Hacker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Automatically completes every quizlet activity with minimal user input. Note that for many activities it will copy the correct answer to your clipboard. Simply paste the word!

This extension also works for Quizlet Live.

Make sure you scan the quizlet terms first before using. Confirm that the extension found the correct number of terms. If not, try loading all terms on the webpage first.                    

Podstawowe informacje o rozszerzeniu

Nazwa Quizlet Hacker Quizlet Hacker
ID kbhbhldnmkajohcalhnbnngfomeejejn
Oficjalny URL https://chromewebstore.google.com/detail/quizlet-hacker/kbhbhldnmkajohcalhnbnngfomeejejn
Opis Automatically completes every quizlet activity!
Rozmiar pliku 12.83 KB
Liczba instalacji 6,000
Aktualna Wersja 3.2
Ostatnia Aktualizacja 2024-02-27
Data Publikacji 2023-03-23
Ocena 4.67/5 Łącznie 9 Oceny
Deweloper Llama Dev
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quizlet Hacker",
    "author": "Llama Dev",
    "description": "Automatically completes every quizlet activity!",
    "version": "3.2",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.quizlet.com\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "32": "\/images\/Quizlet_Hacker.png"
        }
    },
    "icons": {
        "32": "\/images\/Quizlet_Hacker.png"
    }
}