Google Lens search, OCR, and QR scanning in the GNOME Screenshot tool. supports multiple languages download and put in /usr/share/tessdata for more info: check readme on github :)
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
EGO-A-005 manual_review
extensions should not access the clipboard directly
Direct clipboard access via `St.Clipboard.get_default()` requires reviewer scrutiny.
ocr.js:557
St.Clipboard.get_default()
EGO-L-002 warning
objects created by extension should be destroyed in disable()
Objects assigned in `enable()` are missing matching `.destroy()` calls in `disable()` or its helper methods.
extension.js:193
this._lensInnerVBox = new Clutter.Actor({
layout_manager: new Clutter.BoxLayout({
orientation: Clutter.Orientation.VERTICAL,
}),
})
extension.js:199
this._lensSideBox = new St.BoxLayout({
vertical: true,
y_align: Clutter.ActorAlign.CENTER,
})