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
哈哈哈,正好有这个痛点,支持