Trivia Tab

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

Trivia Tabคืออะไร?

Trivia Tab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย triviatabdevelopers และคุณลักษณะหลักของมันคือ "This extension provides a practical study tool for the New Tab page."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Trivia Tab

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    ]
}