Anki Zoom
0.02MB. Updated 2020-04-04.
The author has shared 1 other
item(s).
Description
Download
As add-ons are programs downloaded from the internet, they are potentially malicious. You should only download add-ons you trust.
Supported Anki versions:
- 2.1.9-2.1.29+ (Updated 2020-04-04)
To download this add-on, please copy and paste the following code into Anki 2.1:
538879081
If you were linked to this page from the internet, please open Anki on your computer, go to the Tools menu and then Add-ons>Browse & Install to paste in the code.
All Anki 2.1.x Add-Ons Contact Author
Reviews

Don't work with 2.1.54
With previous versions worked, but was buggy.
With previous versions worked, but was buggy.

yup, confirmed not working on 2.1.54, thx

Not working in 2.1.54; default zoom is not working on Overview page (is working on others)

Only thanks

Doesn't work anymore

We should all find another addon, that is still being constantly updated.
Unfortunately, it seems that the author does not work this addon anymore. The last update was still in 2020. The author does not reply in github issues.
EDIT: I may be mistaken, but since recent version 2.1.50, we can zoom using ctrl+mouse wheel, or by using the View menu.
Unfortunately, it seems that the author does not work this addon anymore. The last update was still in 2020. The author does not reply in github issues.
EDIT: I may be mistaken, but since recent version 2.1.50, we can zoom using ctrl+mouse wheel, or by using the View menu.

Wonderful add-on that I've been using for a couple of years. Please update if you have the time soon!

Not working for 2.1.54

Please update! Great addon.

Traceback (most recent call last):
File "aqt.addons", line 244, in loadAddons
File "/Users/evelinyamashiro/Library/Application Support/Anki2/addons21/538879081/__init__.py", line 169, in <module>
setup_menu()
File "/Users/evelinyamashiro/Library/Application Support/Anki2/addons21/538879081/__init__.py", line 146, in setup_menu
mw.addon_view_menu = getMenu(mw, "&View")
File "/Users/evelinyamashiro/Library/Application Support/Anki2/addons21/538879081/toolbar.py", line 12, in getMenu
menu = a.menu()
AttributeError: 'QAction' object has no attribute 'menu'
File "aqt.addons", line 244, in loadAddons
File "/Users/evelinyamashiro/Library/Application Support/Anki2/addons21/538879081/__init__.py", line 169, in <module>
setup_menu()
File "/Users/evelinyamashiro/Library/Application Support/Anki2/addons21/538879081/__init__.py", line 146, in setup_menu
mw.addon_view_menu = getMenu(mw, "&View")
File "/Users/evelinyamashiro/Library/Application Support/Anki2/addons21/538879081/toolbar.py", line 12, in getMenu
menu = a.menu()
AttributeError: 'QAction' object has no attribute 'menu'

Throws an error on startup with Anki Version 2.1.52 (ab1c2395).
When loading 'Anki Zoom':
Traceback (most recent call last):
File "aqt.addons", line 244, in loadAddons
File "C:\Users\User\AppData\Roaming\Anki2\addons21\538879081\__init__.py", line 169, in <module>
setup_menu()
File "C:\Users\User\AppData\Roaming\Anki2\addons21\538879081\__init__.py", line 146, in setup_menu
mw.addon_view_menu = getMenu(mw, "&View")
File "C:\Users\User\AppData\Roaming\Anki2\addons21\538879081\toolbar.py", line 12, in getMenu
menu = a.menu()
AttributeError: 'QAction' object has no attribute 'menu'
When loading 'Anki Zoom':
Traceback (most recent call last):
File "aqt.addons", line 244, in loadAddons
File "C:\Users\User\AppData\Roaming\Anki2\addons21\538879081\__init__.py", line 169, in <module>
setup_menu()
File "C:\Users\User\AppData\Roaming\Anki2\addons21\538879081\__init__.py", line 146, in setup_menu
mw.addon_view_menu = getMenu(mw, "&View")
File "C:\Users\User\AppData\Roaming\Anki2\addons21\538879081\toolbar.py", line 12, in getMenu
menu = a.menu()
AttributeError: 'QAction' object has no attribute 'menu'

This works great.

it's working

does not zoom pictures only header text

Why can't you set a fixed value? Sometimes switching pages will jump back to the original value. .

thx

Very nice!

solved my problem perfectly

A must have!!, but it does not work in 2.1.50

ty <3

helped me a lot!

great

Not functioning

Perfect!!

It honestly does what it is advertised to do.
Problem is, that i wanted to Zoom into Pictures to read small annotations.
At the moment only the Text is increasing in size, but the Picture stays perfectly the same size.
Am i doing something wrong with ctrl + Scroll and Pinch to Zoom ?
Problem is, that i wanted to Zoom into Pictures to read small annotations.
At the moment only the Text is increasing in size, but the Picture stays perfectly the same size.
Am i doing something wrong with ctrl + Scroll and Pinch to Zoom ?

YES! THIS IS FANTASTIC! I owe you a coffee, chai beer!

Great! zooms with percentage and per page. Easy to use no worries at all!

very good! and I try to modify some codes just like below for every profile has a zoom factor and think it more convenience:
#Saves state zoom
old_state_zoom = QWebEngineView.zoomFactor(mw.web)
if old_state == 'deckBrowser':
# config[ 'deckBrowser_zoom' ] = old_state_zoom
mw.pm.profile["deckBrowser_zoom"] = old_state_zoom
elif old_state == 'overview':
# config[ 'overview_zoom' ] = old_state_zoom
mw.pm.profile["overview_zoom"] = old_state_zoom
elif old_state == 'review':
# config[ 'review_zoom' ] = old_state_zoom
mw.pm.profile["review_zoom"] = old_state_zoom
mw.addonManager.writeConfig(__name__, config)
mw.setUpdatesEnabled(False) #prevents flickering
#Applies state zoom
if new_state == 'deckBrowser':
change_zoom( mw.pm.profile.get("deckBrowser_zoom",1) )
elif new_state == 'overview':
change_zoom( mw.pm.profile.get("overview_zoom",1) )
elif new_state == 'review':
change_zoom( mw.pm.profile.get("review_zoom",1) )
#Saves state zoom
old_state_zoom = QWebEngineView.zoomFactor(mw.web)
if old_state == 'deckBrowser':
# config[ 'deckBrowser_zoom' ] = old_state_zoom
mw.pm.profile["deckBrowser_zoom"] = old_state_zoom
elif old_state == 'overview':
# config[ 'overview_zoom' ] = old_state_zoom
mw.pm.profile["overview_zoom"] = old_state_zoom
elif old_state == 'review':
# config[ 'review_zoom' ] = old_state_zoom
mw.pm.profile["review_zoom"] = old_state_zoom
mw.addonManager.writeConfig(__name__, config)
mw.setUpdatesEnabled(False) #prevents flickering
#Applies state zoom
if new_state == 'deckBrowser':
change_zoom( mw.pm.profile.get("deckBrowser_zoom",1) )
elif new_state == 'overview':
change_zoom( mw.pm.profile.get("overview_zoom",1) )
elif new_state == 'review':
change_zoom( mw.pm.profile.get("review_zoom",1) )

Awesome working like a charm thanks for your effort!

:D

Helps a lot when you have a big monitor

Great!

occasionally (maybe once every 10 times) it doesn't display the other side of the card when hitting "show answer".
I have no other addons installed, and it fixes itself when I zoom in or out.
update: sometimes it does't even show the next question until I zoom.
Another small Issue I've seen, is that it seems to "save" the zoom level on a per-card basis. So when I'm zooming to fix the first issue, it saves that level, and the next time I come across the card I'm getting flung back and forth between zoom levels, which is super annoying.
In case it helps with tracking down the issue, I'm studying Japanese on a laptop with a single 4k monitor.
I have no other addons installed, and it fixes itself when I zoom in or out.
update: sometimes it does't even show the next question until I zoom.
Another small Issue I've seen, is that it seems to "save" the zoom level on a per-card basis. So when I'm zooming to fix the first issue, it saves that level, and the next time I come across the card I'm getting flung back and forth between zoom levels, which is super annoying.
In case it helps with tracking down the issue, I'm studying Japanese on a laptop with a single 4k monitor.

Works perfectly

obrigado

Estou testando, e é bem melhor que o Zoom 2.1, que fica toda hora desconfigurando.

I wish It could Zoom Images on Image Occlusion :(

Great when your monitor is strange

thumbs up

It met a need that always.

Thanks!

Should be implemented in Anki
Must have add-on
Must have add-on

gj

Hello dear ccz-2 (unfortunately I don't know your name)
I'm a medical student and I want to appreciate you for this awesome add on you made
I study all of my cards with image occlusion and because my images are large in size I can't see entire image in first view (because the zoom out limit can not go further than 26%) so I have to scroll the mouse to Left/Right/down to reach the area that I want.
I really need your help or any person who is reading this message
1. how can I zoom out less than 26%
2. or how can I change the picture in the image occlusion so that all of that can be seen in one view without scrolling (because a have lots of large images, resizing them in Photoshop or etc will take time)
I'm a medical student and I want to appreciate you for this awesome add on you made
I study all of my cards with image occlusion and because my images are large in size I can't see entire image in first view (because the zoom out limit can not go further than 26%) so I have to scroll the mouse to Left/Right/down to reach the area that I want.
I really need your help or any person who is reading this message
1. how can I zoom out less than 26%
2. or how can I change the picture in the image occlusion so that all of that can be seen in one view without scrolling (because a have lots of large images, resizing them in Photoshop or etc will take time)

great tool !

Es muy buenooo <3

Very good!

2.1.40 Ok

Helpful

it's helpful, thanks

it's perfect

Perfect, thank you!

Got the same problem as this user: "Is there a way to zoom on a specific part of an image during review, as it does not zoom in any more after an image is covering the entire screen(occluded image)"
Most of my cards are image occlusion cards. So though the idea is nice. It is useless to me at the morment. Sorry for not giving you a positive response :(
Most of my cards are image occlusion cards. So though the idea is nice. It is useless to me at the morment. Sorry for not giving you a positive response :(

Damn useful

THIS IS SO USEFULL! THANKS!

Simple and effective thanks!!

Useful

good

1. The config button in the add-ons overview is greyed out and not clickable.
workaround: edit config.json
2. Does it change the text size in the editor?
edit1: 1. Yes, I deleted and re-downloaded. To be sure, I restarted Anki. The grey-out remains. BTW, "view add-on page" is greyed out as well. 2. Thank you! I didn't know of that setting.
edit2: Apparently this is an issue not (only) with this add-on, but with my Anki.
edit3: thank you for the tooltip
edit4: There is a zoom limit for images. To circumvent it, you can use another zoom utility like Windows magnifyier (Win key and "+" key)
workaround: edit config.json
2. Does it change the text size in the editor?
edit1: 1. Yes, I deleted and re-downloaded. To be sure, I restarted Anki. The grey-out remains. BTW, "view add-on page" is greyed out as well. 2. Thank you! I didn't know of that setting.
edit2: Apparently this is an issue not (only) with this add-on, but with my Anki.
edit3: thank you for the tooltip
edit4: There is a zoom limit for images. To circumvent it, you can use another zoom utility like Windows magnifyier (Win key and "+" key)
Comment from author before post was edited
1. Can you try deleting and reinstalling the add on?
2. No it only affects the review screen. If you want to make other elements of the UI bigger, I’d suggest going into preferences and changing the “user interface size”
2. No it only affects the review screen. If you want to make other elements of the UI bigger, I’d suggest going into preferences and changing the “user interface size”

Thanks.
It helps me using Anki more comfortably: I zoom in, lean back, and use my game controller to review cards without distractions (https://ankiweb.net/shared/info/1049863218)… 🙂
It helps me using Anki more comfortably: I zoom in, lean back, and use my game controller to review cards without distractions (https://ankiweb.net/shared/info/1049863218)… 🙂

Help me with small images. Thanks very much!

Is there a way to zoom on a specific part of an image during review, as it does not zoom in any more after an image is covering the entire screen(occluded image)

como posso dar zoom em imagens ? me ajude por favor

Works well!

It's working and awesome!

ZOOOOOOOOOOOOOOM

Works as intended

Good!

FEATURE REQUEST:
Please allow us to disable Anki Zoom during the add card dialogue/window so that it will not interfere with the macros for super/subscripts in the mini format pack.
Otherwise, a wonderful add-on.
Please allow us to disable Anki Zoom during the add card dialogue/window so that it will not interfere with the macros for super/subscripts in the mini format pack.
Otherwise, a wonderful add-on.

works!

F

Wonderful thanks
Comment from author before post was edited
Yes i've given it some thought, but still undecided on how it'll work. I responded to your github post.
If anyone has an idea of how it'll work feel free to suggest
If anyone has an idea of how it'll work feel free to suggest

Good

Great add-on! Is it possible to have, for example, M=zoom in and N=zoom out. Would be very handy in my case. Basically just being able to resign keys.

FINALLY!!! Thank you for fixing the damned zoom! It works even with my antimicro gamepad mapping in debian.

Just what I needed!

Works perfectly! Thanks for creating this add on!

Muito útil!

YES

wohoooo Works! My eyes love it. Thank you!

Thanks thanks thanks :)))))

NICE

thanks

Unfortunately doesn't work on macOS.
Comment from author
It should work regardless of the platform - can you elaborate on the issue?

Perfect, works with Anki 2.1, no issues

Works perfectly - thanks!
Would it be possible to be able to prevent zooming whilst using the 'edit during review' add-on, or at least have an option to do this, so that subscript and superscript can be done in the reviewer as opposed to needing to open the browser.
Thanks again
Would it be possible to be able to prevent zooming whilst using the 'edit during review' add-on, or at least have an option to do this, so that subscript and superscript can be done in the reviewer as opposed to needing to open the browser.
Thanks again
Comment from author
Great suggestion - I will look into it

the best anki zoom add-on!

I stopped studying to take a break long enough to rate this.
saved my work flow
thanks man
saved my work flow
thanks man

Super!

This is what I need for my Japanese decks. Thank you

好用

thanks for this great addon , very useful. İf only we could also zoom when the browser or edit screen is opened it would complete the addon in many ways

Best Zoom Addon for Anki.

muito bom

great

better than Zoom 2.1

Thx

ajuda muito

awesome!

ease instalation

It's working, thx!

Thank you!

Anki Zoom worked for me as intended. Thanks!

very useful

i had problem with Zoom2.1 on Linux (Ubuntu), after a recommendation to try this add-on, I installed it and everything solved. Thank you!
the issue I encountered was that control + mouse wheel up/down didn't work.
the issue I encountered was that control + mouse wheel up/down didn't work.

Good job

it´s a useful add-on

Update 2: it's all good - just remapped ctrl-0 to ctrl-5 to prevent the conflict. Thanks!
Update 1: shortcut works fine in the main deck page. I now actually think it is due to a conflict with the customize keyboard shortcuts add on, which overrides shortcuts in the reviewer. I have encountered a similar issue with shortcuts not working in reviewer for the advanced review bottom bar add on. Do you know if there is any way to overcome this?
Love this add on as there haven't been any bugs.
However I have recently noticed (maybe since the recent zoom %age indicator) that ctrl + 0 doesn't work to reset the zoom when in the reviewer (just a minor point)
Thanks for the amazing add on!
Update 1: shortcut works fine in the main deck page. I now actually think it is due to a conflict with the customize keyboard shortcuts add on, which overrides shortcuts in the reviewer. I have encountered a similar issue with shortcuts not working in reviewer for the advanced review bottom bar add on. Do you know if there is any way to overcome this?
Love this add on as there haven't been any bugs.
However I have recently noticed (maybe since the recent zoom %age indicator) that ctrl + 0 doesn't work to reset the zoom when in the reviewer (just a minor point)
Thanks for the amazing add on!
Comment from author before post was edited
Edit: Ah - if that addon is remapping the Ctrl-0 hotkey to another function I'll add user-customizable keyboard shortcuts
Interesting - it works for me. Does reset work via the menu option, and does it display the shortcut as 'Ctrl-0'?
Interesting - it works for me. Does reset work via the menu option, and does it display the shortcut as 'Ctrl-0'?

It´s good but it only zooms the first pictiure. I got many Pictures underneath and when I want to zoom it it only makes the first Picture bigger and the others stay small :(
Comment from author
Zoom respects the layout template of your cards, so if your pictures are set to be a percentage of the screen, it will not resize them)
Whole window scaling is coming in a future update
Whole window scaling is coming in a future update

Best Anki Zoom add-on to date

Hi, the addon is working really smoothly! However, it doesn't indicate the level of zoom. For ex, if we zoom in chrome of any other browser, it indicated % of zoom so as to let users know the level of zoom. It is basically helpful to get back to original zoom as it become tough to adjust back to original zoom without knowing the zoom level. I hope you consider this.Thanks for sharing the addon.
Edit: The author added this feature the very same day!!! Thanks a lot.
Edit: The author added this feature the very same day!!! Thanks a lot.
Comment from author before post was edited
Edit: Now added!
Sure - I'll consider adding as a feature. You can also use Ctrl-0 to get back to the original zoom
Sure - I'll consider adding as a feature. You can also use Ctrl-0 to get back to the original zoom

Neat! It does not interfere with the workaround suggested at https://changes.ankiweb.net/#/known-issues?id=text-size, just what I needed

I love it!! Thankss

Thanks

Thank you for this! The bugs with Zoom 2.1 were starting to get frustrating... this is so much smoother.

Great add on! Unlike Zoom 2.1, it keeps your zoom even after you close Anki.

Awesome! Thanks for sharing!

Awesome !!, can't wait for your next update with the image zoom functionality :)

works well

I LOVE YOU!! I've been waiting for this one since 1,5 month 10 hours a day^^
Let me buy you a coffee
Let me buy you a coffee

One of simplest and effective addon thank you

awesome thanks

It's great

I got Anki-making group in my medical school since only I got a 1440p screen, it's a blessing

Woop woop . Zoom 21 has been a bit buggy for me, but this add-on work smoothly so far. thanks!