Quizlet Timer

Memorize your Quizlet sets more efficiently with repetitive reminders.

什么是Quizlet Timer?

Quizlet Timer是由rbyatdev开发的Chrome扩展程序,该扩展的主要功能是“Memorize your Quizlet sets more efficiently with repetitive reminders.”。

扩展截图

screenshot
screenshot
screenshot

下载Quizlet Timer扩展crx文件

下载Quizlet Timer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Memorize your Quizlet sets more efficiently with repetitive reminders!

Are you using a Quizlet flashcard set to memorize terms or definitions? Use Quizlet Timer to make learning easier. Going to a Quizlet set and activating the program will allow you to set a time interval to receive practice opportunities. Figure out which flashcards are easier, and which ones are more difficult, and improve your memorization. Practice makes perfect!

https://github.com/rbyat/Quizlet-Timer

*Not affiliated with Quizlet Inc.*                    

扩展基本信息

名称 Quizlet Timer Quizlet Timer
ID dhkdngggldpjdkdaemfmcfejmehfcfgn
官方URL https://chrome.google.com/webstore/detail/quizlet-timer/dhkdngggldpjdkdaemfmcfejmehfcfgn
简介 Memorize your Quizlet sets more efficiently with repetitive reminders.
文件大小 51.58 KB
安装次数 590
当前版本 1.0.0
更新时间 2019-08-04
上架时间 2019-08-04
评分 2.67/5 共3次评分
开发者 rbyatdev
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quizlet Timer",
    "version": "1.0.0",
    "description": "Memorize your Quizlet sets more efficiently with repetitive reminders.",
    "short_name": "Quizlet",
    "options_page": "options.html",
    "background": {
        "scripts": [
            "\/js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "\/images\/quizlet_logo.png",
        "default_popup": "popup.html",
        "default_title": "Go to a Quizlet deck webpage to begin memorizing!"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/quizlet.com\/*",
                "https:\/\/quizlet.com\/*"
            ],
            "js": [
                "\/js\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "\/images\/icon.png"
    ],
    "permissions": [
        "storage",
        "alarms",
        "notifications",
        "tabs"
    ]
}