Bỏ qua đến nội dung

Anki Transparency

Chờ xử lý #anki #addon #transparency
Unknown
1/12/2024

Cách tải addon Anki Transparency

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

1967799146

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 1967799146 và copy

2

Mô tả chi tiết

Disclaimer: I am not a developer and cannot assist with compatibility issues for your version of Anki. This addon has been tested and works with my current version, 25.02 Qt6, but it may not function with other versions. If anyone wishes to adapt it for other versions, they are welcome to do so, provided they give proper credit to both me and the original addon.

Function: This addon lets you change Anki’s window opacity. It comes in handy when you want to watch something in the background while doing your reviews.

To open the dialog Press F4 or go to View > Set Window Opacity.

Update Log: 2024-11-16:   - Addon release 2024-11-30:   - Added support for both Qt5 and Qt6.   - Fixed an issue related to the configuration file. 2024-12-01:   - Fixed an issue occurring when changing profiles.   - Changed some parts of the code for better readability.


Reviews (1)

👍 2024-12-01

Interesting add-on! The addHook(“profileLoaded”, setup_menu) is run when the profile is run so I think there is a problem with the menu increasing when the profile is changed, so I recommend to use a variable to run it only once or use main_window_did_init of gui_hooks. by Shige ඞ Comment from author Thanks so much for the feedback! You were spot on about the issue with addHook(“profileLoaded”, setup_menu). I ended up switching to main_window_did_init.append(setup_menu) like you suggested. I als