Quizlet Automator

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

Quizlet Automator क्या है?

Quizlet Automator williamspencerdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension automatically completes Quizlet's 'Write Mode', 'Learn Mode', and 'Test Mode'"।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Quizlet Automator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Quizlet Automator Quizlet Automator
ID mkpliafdkeackpndnjgeaiopggidjinp
आधिकारिक URL https://chrome.google.com/webstore/detail/quizlet-automator/mkpliafdkeackpndnjgeaiopggidjinp
विवरण This extension automatically completes Quizlet's 'Write Mode', 'Learn Mode', and 'Test Mode'
फ़ाइल का आकार 37.24 KB
स्थापना संख्या 803
वर्तमान संस्करण 0.3.1
अंतिम अपडेट 2018-05-30
प्रकाशन तिथि 2018-05-30
रेटिंग 3.10/5 कुल 10 रेटिंग्स
डेवलपर williamspencerdev
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
            ]
        }
    ]
}