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

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

확장 프로그램 사용 설명서

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