Ruzu Anki pop-ups

Chrome extension that periodically presents Anki cards via notifications

Ruzu Anki pop-ups란 무엇입니까?

Ruzu Anki pop-ups은(는) Ruzu Studios에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension that periodically presents Anki cards via notifications"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Ruzu Anki pop-ups 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This Chrome extension allows you to review Anki decks whilst working on other important tasks by harnessing the power of desktop notifications! Cards from your chosen deck will periodically pop up for you to review.

Features include:
- Deck select
- Set how often cards pop up (every 5 mins, 10 mins etc)
- Turn on and off with the flick of a switch
- Check the status of the app with a glance (pop-ups enabled/disabled etc)
- Shortcuts to enable / disable pop-ups or show the next card early
- Currently supports text based Anki decks and models only.
- Configure how card fields are displayed for each model.                    

확장 프로그램 기본 정보

이름 Ruzu Anki pop-ups Ruzu Anki pop-ups
ID mpjdjilfcgmndfnailloidpemknemeno
공식 URL https://chromewebstore.google.com/detail/ruzu-anki-pop-ups/mpjdjilfcgmndfnailloidpemknemeno
설명 Chrome extension that periodically presents Anki cards via notifications
파일 크기 274 KB
설치 횟수 528
현재 버전 2.0.1
최근 업데이트 2020-11-03
출시 날짜 2018-05-30
평점 4.25/5 총 8 개의 평점
개발자 Ruzu Studios
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "2.0.1",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "default_locale": "en",
    "browser_action": {
        "default_icon": "images\/icon128.png",
        "default_popup": "options.html"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "storage",
        "notifications",
        "alarms",
        "idle",
        "background",
        "contextMenus",
        "http:\/\/localhost\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": false
    },
    "commands": {
        "ruzu-toggle-enabled": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "Enable \/ Disable test notifications",
            "global": true
        },
        "ruzu-show-next-question": {
            "suggested_key": {
                "default": "Ctrl+Shift+2"
            },
            "description": "Show next question",
            "global": true
        }
    },
    "web_accessible_resources": [
        "images\/icon48.png"
    ]
}