Quizlet Timer

Memorize your Quizlet sets more efficiently with repetitive reminders.

Co to jest Quizlet Timer?

Quizlet Timer to rozszerzenie Chrome opracowane przez rbyatdev, a jego główną funkcją jest „Memorize your Quizlet sets more efficiently with repetitive reminders.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Quizlet Timer

Pobierz pliki rozszerzeń Quizlet Timer 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

                        Memorize your Quizlet sets more efficiently with repetitive reminders!

Are you using a Quizlet flashcard set to memorize terms or definitions? Use Quizlet Timer to make learning easier. Going to a Quizlet set and activating the program will allow you to set a time interval to receive practice opportunities. Figure out which flashcards are easier, and which ones are more difficult, and improve your memorization. Practice makes perfect!

https://github.com/rbyat/Quizlet-Timer

*Not affiliated with Quizlet Inc.*                    

Podstawowe informacje o rozszerzeniu

Nazwa Quizlet Timer Quizlet Timer
ID dhkdngggldpjdkdaemfmcfejmehfcfgn
Oficjalny URL https://chrome.google.com/webstore/detail/quizlet-timer/dhkdngggldpjdkdaemfmcfejmehfcfgn
Opis Memorize your Quizlet sets more efficiently with repetitive reminders.
Rozmiar pliku 51.58 KB
Liczba instalacji 590
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2019-08-04
Data Publikacji 2019-08-04
Ocena 2.67/5 Łącznie 3 Oceny
Deweloper rbyatdev
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quizlet Timer",
    "version": "1.0.0",
    "description": "Memorize your Quizlet sets more efficiently with repetitive reminders.",
    "short_name": "Quizlet",
    "options_page": "options.html",
    "background": {
        "scripts": [
            "\/js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "\/images\/quizlet_logo.png",
        "default_popup": "popup.html",
        "default_title": "Go to a Quizlet deck webpage to begin memorizing!"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/quizlet.com\/*",
                "https:\/\/quizlet.com\/*"
            ],
            "js": [
                "\/js\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "\/images\/icon.png"
    ],
    "permissions": [
        "storage",
        "alarms",
        "notifications",
        "tabs"
    ]
}