Trivia Tab
This extension provides a practical study tool for the New Tab page.
Vad är Trivia Tab?
Trivia Tab är en Chrome-tillägg utvecklad av triviatabdevelopers, och dess huvudfunktion är "This extension provides a practical study tool for the New Tab page.".
Tilläggsskärmbilder
Ladda ner Trivia Tab-förlängningens CRX-fil
Ladda ner Trivia Tab-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | ejbjikcjkdhepoddfondeammnabjpfie |
Officiell webbadress | https://chrome.google.com/webstore/detail/trivia-tab/ejbjikcjkdhepoddfondeammnabjpfie |
Beskrivning | This extension provides a practical study tool for the New Tab page. |
Filstorlek | 11.23 MB |
Antal Installationer | 35 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2017-03-26 |
Publiceringsdatum | 2017-03-26 |
Betyg | 3.75/5 Totalt 4 Betyg |
Utvecklare | triviatabdevelopers |
Betalningssätt | free |
Stödda Språk | 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" ] } |