Quizlet Timer
Memorize your Quizlet sets more efficiently with repetitive reminders.
What is Quizlet Timer?
Quizlet Timer is a Chrome extension developed by rbyatdev, and its main feature is "Memorize your Quizlet sets more efficiently with repetitive reminders.".
Extension Screenshots
Download Quizlet Timer Extension CRX File
Download Quizlet Timer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.*
Extension Basic Information
Name | |
ID | dhkdngggldpjdkdaemfmcfejmehfcfgn |
Official URL | https://chrome.google.com/webstore/detail/quizlet-timer/dhkdngggldpjdkdaemfmcfejmehfcfgn |
Description | Memorize your Quizlet sets more efficiently with repetitive reminders. |
File Size | 51.58 KB |
Installation Count | 590 |
Current Version | 1.0.0 |
Last Updated | 2019-08-04 |
Publish Date | 2019-08-04 |
Rating | 2.67/5 Total 3 Ratings |
Developer | rbyatdev |
Payment Type | free |
Supported Languages | 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" ] } |