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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 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"
    ]
}