Quizlet Automator

This extension automatically completes Quizlet's 'Write Mode', 'Learn Mode', and 'Test Mode'

Co je Quizlet Automator?

Quizlet Automator je rozšíření Chrome vyvinuté williamspencerdev, a jeho hlavní funkcí je „This extension automatically completes Quizlet's 'Write Mode', 'Learn Mode', and 'Test Mode'“.

Stáhnout soubor CRX rozšíření Quizlet Automator

Stáhněte si soubory rozšíření Quizlet Automator ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This extension automates Quizlet's 'Write Mode', 'Learn Mode', and 'Test Mode', providing a simple, minimalistic design interface. When on a 'Write Mode' or 'Learn Mode' web page, simply click the icon in the extensions bar and press the minimalistic, well-labeled button. Should the extension not work the first time, simply reload the page and complete the same process again. Happy Not-Quizletting!

Version Notes:
0.3.1: Bugfixes
0.3.0: Introduced support for Test Mode automation!
0.2.1: Fixed description
0.2.0: Introduced support for Learn Mode automation!
0.1.3: Minor bugfix / restructuring
0.1.2: Fixed further initial bugs
0.1.1: Fixed initial bugs
0.1.0: Initial Release                    

Základní Informace o Rozšíření

Název Quizlet Automator Quizlet Automator
ID mkpliafdkeackpndnjgeaiopggidjinp
Oficiální URL https://chrome.google.com/webstore/detail/quizlet-automator/mkpliafdkeackpndnjgeaiopggidjinp
Popis This extension automatically completes Quizlet's 'Write Mode', 'Learn Mode', and 'Test Mode'
Velikost souboru 37.24 KB
Počet instalací 803
Aktuální Verze 0.3.1
Poslední Aktualizace 2018-05-30
Datum Vydání 2018-05-30
Hodnocení 3.10/5 Celkem 10 Hodnocení
Vývojář williamspencerdev
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quizlet Automator",
    "description": "This extension automatically completes Quizlet's 'Write Mode', 'Learn Mode', and 'Test Mode'",
    "version": "0.3.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "QA Options"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/quizlet.com\/*"
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "script.js"
            ]
        }
    ]
}