Quizlet Timer

Memorize your Quizlet sets more efficiently with repetitive reminders.

Quizlet Timer क्या है?

Quizlet Timer rbyatdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Memorize your Quizlet sets more efficiently with repetitive reminders."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

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

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

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

                        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.*                    

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

नाम Quizlet Timer Quizlet Timer
ID dhkdngggldpjdkdaemfmcfejmehfcfgn
आधिकारिक URL https://chrome.google.com/webstore/detail/quizlet-timer/dhkdngggldpjdkdaemfmcfejmehfcfgn
विवरण Memorize your Quizlet sets more efficiently with repetitive reminders.
फ़ाइल का आकार 51.58 KB
स्थापना संख्या 590
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2019-08-04
प्रकाशन तिथि 2019-08-04
रेटिंग 2.67/5 कुल 3 रेटिंग्स
डेवलपर rbyatdev
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    ]
}