Trivia Tab
This extension provides a practical study tool for the New Tab page.
Trivia Tabとは何ですか?
Trivia Tabはtriviatabdevelopersによって開発されたChromeの拡張機能で、その主な機能は「This extension provides a practical study tool for the New Tab page.」です。
拡張機能のスクリーンショット
Trivia Tab拡張機能のCRXファイルをダウンロード
Trivia Tab拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | |
ID | ejbjikcjkdhepoddfondeammnabjpfie |
公式URL | https://chrome.google.com/webstore/detail/trivia-tab/ejbjikcjkdhepoddfondeammnabjpfie |
説明 | This extension provides a practical study tool for the New Tab page. |
ファイルサイズ | 11.23 MB |
インストール数 | 35 |
現在のバージョン | 1.0 |
最終更新日 | 2017-03-26 |
公開日 | 2017-03-26 |
評価 | 3.75/5 合計 4 レビュー |
開発者 | triviatabdevelopers |
支払い方法 | free |
対応言語 | 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" ] } |