Trivia Tab

This extension provides a practical study tool for the New Tab page.

O que é Trivia Tab?

Trivia Tab é uma extensão do Chrome desenvolvida por triviatabdevelopers, e sua principal característica é "This extension provides a practical study tool for the New Tab page.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Trivia Tab

Baixe arquivos de extensão Trivia Tab no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Trivia Tab Trivia Tab
ID ejbjikcjkdhepoddfondeammnabjpfie
URL Oficial https://chrome.google.com/webstore/detail/trivia-tab/ejbjikcjkdhepoddfondeammnabjpfie
Descrição This extension provides a practical study tool for the New Tab page.
Tamanho do Arquivo 11.23 MB
Contagem de Instalações 35
Versão Atual 1.0
Última Atualização 2017-03-26
Data de Publicação 2017-03-26
Classificação 3.75/5 Total de 4 Avaliações
Desenvolvedor triviatabdevelopers
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}