Trivia Tab
This extension provides a practical study tool for the New Tab page.
What is Trivia Tab?
Trivia Tab is a Chrome extension developed by triviatabdevelopers, and its main feature is "This extension provides a practical study tool for the New Tab page.".
Extension Screenshots
Download Trivia Tab Extension CRX File
Download Trivia Tab 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
Trivia Tab is a practical tool that smoothly integrates studying into your web browsing experience. This Chrome extension easily incorporates a quick interactive way to review class notes without having to commit to a long and painful study session. Users can log into their Quizlet account and choose a flashcard set. Every time the user opens a new tab, they will be quizzed on a random flashcard from the set. They can choose to quiz themselves and answer the flashcard shown, or continue browsing. Trivia Tab is ideal for students or anyone looking to learn more and improve their long-term memory. It helps subtly sneak a way to study into someone's everyday life.
Extension Basic Information
Name | |
ID | ejbjikcjkdhepoddfondeammnabjpfie |
Official URL | https://chrome.google.com/webstore/detail/trivia-tab/ejbjikcjkdhepoddfondeammnabjpfie |
Description | This extension provides a practical study tool for the New Tab page. |
File Size | 11.23 MB |
Installation Count | 35 |
Current Version | 1.0 |
Last Updated | 2017-03-26 |
Publish Date | 2017-03-26 |
Rating | 3.75/5 Total 4 Ratings |
Developer | triviatabdevelopers |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trivia Tab", "description": "This extension provides a practical study tool for the New Tab page.", "version": "1.0", "options_page": "options.html", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "chrome_url_overrides": { "newtab": "quizpage.html" }, "web_accessible_resources": [ "quizpage.html", "options.html" ], "content_security_policy": "script-src 'self' https:\/\/api.quizlet.com; object-src 'self'", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-3.0.0.min.js" ] } ], "permissions": [ "identity", "https:\/\/quizlet.com\/*", "https:\/\/api.quizlet.com\/*", "storage" ] } |