Bỏ qua đến nội dung

New Card Notification (新卡片提醒)

Chờ xử lý #anki #addon #new #card #notification
https://github.com/am009/New-Card-Notification
29/7/2021

Cách tải addon New Card Notification (新卡片提醒)

Bạn có thể tải addon bằng một trong hai cách sau:

Click nút Copy bên dưới để copy code vào clipboard

1658281679

Sau đó mở Anki → Tools → Add-ons → Get Add-ons → Dán code → OK

Mở trang addon trên AnkiWeb và tìm mã code ở cuối trang

Mở trên AnkiWeb

Cuộn xuống cuối trang AnkiWeb, tìm dòng có mã code 1658281679 và copy

6

Mô tả chi tiết

A simple add-on that notifies you with a tooltip when new card appears. Useful when you are learning decks with plenty cards you are familiar with, so that it reminds you to suspend it.

source code:

from anki.cards import Card from aqt import gui_hooks from anki.consts import * import aqt.utils

def notifier(card: Card) -> None: if card.queue == QUEUE_TYPE_NEW: aqt.utils.tooltip(“New Card”) return

gui_hooks.reviewer_did_show_question.append(notifier)


Screenshots


Liên kết hỗ trợ


Reviews (6)

👍 2024-05-29

So simple and effective that still works perfectly on Version ⁨24.04.1.

I treat new cards differently as I almost always rate as Good, so the notification is right what I needed.

👍 2024-04-25

Thank you for making this simple yet effective add-on!

A suggestion: https://github.com/am009/New-Card-Notification/issues/1

👍 2023-03-10

I like it. It’s what I needed.

👍 2023-03-06

I’ve often wanted this, but I was never sure it was a good idea. Maybe, when studying vocabulary (for example) it’s better not knowing if you’ve seen a word before? At least you’d need to think about whether or not it looks like something you’ve seen before. In the end, I decided that not knowing whether a card is new, increases the chance of planting a false friend, where you mistakenly associate two concepts. So, now I’m happily using this very simple extension.

👍 2022-02-20

does what it says

👍 2021-08-05

哈哈哈,正好有这个痛点,支持