Trivia Tab
This extension provides a practical study tool for the New Tab page.
Was ist Trivia Tab?
Trivia Tab ist eine Chrome-Erweiterung, die von triviatabdevelopers entwickelt wurde, und ihr Hauptmerkmal ist "This extension provides a practical study tool for the New Tab page.".
Erweiterungsscreenshots
Trivia Tab-Erweiterungs-CRX-Datei herunterladen
Laden Sie Trivia Tab-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | ejbjikcjkdhepoddfondeammnabjpfie |
Offizielle URL | https://chrome.google.com/webstore/detail/trivia-tab/ejbjikcjkdhepoddfondeammnabjpfie |
Beschreibung | This extension provides a practical study tool for the New Tab page. |
Dateigröße | 11.23 MB |
Installationsanzahl | 35 |
Aktuelle Version | 1.0 |
Letztes Update | 2017-03-26 |
Veröffentlichungsdatum | 2017-03-26 |
Bewertung | 3.75/5 Insgesamt 4 Bewertungen |
Entwickler | triviatabdevelopers |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |