Panel indicator for Twingate VPN status with resource management, session renewal, and favourites.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
EGO-X-004 warning
extensions should avoid synchronous file IO in shell code
Shell code should avoid synchronous file IO APIs like `GLib.file_get_contents()` and `Gio.File.load_contents()`.
extension.js:428
file.load_contents(null)
EGO-A-005 manual_review
extensions should not access the clipboard directly
Direct clipboard access via `St.Clipboard.get_default()` requires reviewer scrutiny.
extension.js:419
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:30
this._icon = new St.Icon({
gicon: Gio.icon_new_for_string(this._getIconPath('disconnected')),
icon_size: PANEL_ICON_SIZE,
style_class: 'twingate-panel-icon',
})
EGO-L-004 warning
main loop sources should be removed in disable()
Main loop sources assigned in `enable()` are missing matching removals in `disable()` or its helper methods.
extension.js:403
GLib.timeout_add_seconds(GLib.PRIORITY_DEFAULT, 2, () => {
GLib.spawn_command_line_async('twingate desktop-restart');
return GLib.SOURCE_REMOVE;
})
| Version | Status |
|---|---|
| 1 | Unreviewed |