Review of "Screen word translate" version 13

Details Page Preview

Translate word on the screen. Default web address is translate.google.com, you can add the web address for your own language. Also you can contribute your web address to my github repo. Use hotkey Ctrl+Alt+j to toggle the function. Use hotkey Ctrl+Alt+o to show popup window

Extension Homepage
https://github.com/sunwxg/gnome-shell-extension-dict

No comments.

Diff Against

Files

Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.

All Versions

Previous Reviews on this Version

andyholmes active
Approved. In case you didn't know, in versions of GNOME Shell that return a Uint8Array instead of a string you can use the following: ``` if (data instanceof Uint8Array) { data = imports.byteArray.toString(data); } ``` Or you can use your own function if that's more portable :)