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.”。

擴展截圖

screenshot

下載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.                    

擴展基本資訊

名稱 Trivia Tab Trivia Tab
ID ejbjikcjkdhepoddfondeammnabjpfie
官方網址 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"
    ]
}