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.
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: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.
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.
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.
extension.js:113
this._session = new Soup.Session({
timeout: 12,
user_agent: USER_AGENT,
})
| Version | Status |
|---|---|
| 2 | Unreviewed |
| 1 | Rejected |