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