Show AI provider usage metrics in the GNOME panel. Based on codexbar by @steipete. It supports all Codexbar providers whose usage is accessible via API, now with additional support for custom providers and OpenAI Codex.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
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:69
this._contentBox = new St.BoxLayout({
vertical: true,
style_class: 'codexbar-usage-section',
})
extension.js:29
this._headerBox = new St.BoxLayout({
style_class: 'codexbar-header',
vertical: false,
x_expand: true,
})
extension.js:34
this._headerTitle = new St.Label({
text: _('CodexBar'),
y_align: Clutter.ActorAlign.CENTER,
x_expand: true,
})
extension.js:16
this._iconBox = new St.BoxLayout({
style_class: 'codexbar-panel-icon-box',
vertical: false,
y_align: Clutter.ActorAlign.CENTER,
})
extension.js:21
this._iconFill = new St.Widget({
style_class: 'codexbar-panel-icon-fill',
x_expand: false,
width: 0,
})
extension.js:63
this._tabsContainer = new St.BoxLayout({
style_class: 'codexbar-tabs-container',
vertical: false,
})
EGO-L-005 warning
owned object references should be released in disable()
Owned references that are cleaned up in `disable()` should also be released with `null` or `undefined`.
extension.js:29
this._headerBox = new St.BoxLayout({
style_class: 'codexbar-header',
vertical: false,
x_expand: true,
})