Review of "Net Identity" version 1

Details Page Preview

Panel indicator for your current network identity: public IP address, VPN/WireGuard/Tailscale state, DNS resolvers, primary connection, and LAN addresses. Click a row to copy its value to the clipboard (write-only; this extension does not read the clipboard). Notifies when the public IP changes. Network access: this extension may request your public IP from api.ipify.org, ifconfig.me, or icanhazip.com. Responses are kept in memory only for the session. Local connection details come from NetworkManager and /etc/resolv.conf. No accounts and no telemetry.

Extension Homepage
https://github.com/N0L0g1c/Net-Identity

No comments.

FAQ

Files

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

Shexli (experimental) warning 3 manual_review 1

Shexli found 4 issues that may need reviewer attention.

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()`.

File Operations

  • extension.js:321
    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.

Review Guidelines

  • extension.js:66
    St.Clipboard.get_default()

EGO-L-003 warning

signals connected by extension should be disconnected in disable()

Signals assigned in `enable()` are missing matching disconnect calls in `disable()` or its helper methods.

Disconnect all signals

  • extension.js:157
            this.menu.connect('open-state-changed', (_m, open) => {
                if (open)
                    this._refreshLocal();
            })

EGO-L-008 warning

Soup.Session instances should be aborted during cleanup

Soup.Session instances should be aborted during cleanup.

Soup.Session.abort

  • extension.js:113
            this._session = new Soup.Session({
                timeout: 12,
                user_agent: USER_AGENT,
            })

All Versions

Version Status
2 Unreviewed
1 Rejected

Previous Reviews on this Version

NoLo auto- rejected
Auto-rejected because of new version 2 was uploaded