Ruzu Anki pop-ups

Chrome extension that periodically presents Anki cards via notifications

Ruzu Anki pop-upsคืออะไร?

Ruzu Anki pop-ups เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ruzu Studios และคุณลักษณะหลักของมันคือ "Chrome extension that periodically presents Anki cards via notifications"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ruzu Anki pop-ups

ดาวน์โหลดไฟล์ส่วนขยาย Ruzu Anki pop-ups ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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