Quickly convert and copy MAC address formats (colons, hyphens, dots, clean hex) to clipboard directly from the GNOME panel. This extension accesses the clipboard.
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.
extension.js:71
St.Clipboard.get_default()
extension.js:208
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:154
this._copyBtn.connect('clicked', () => this._copyResult())
extension.js:55
this._entry.clutter_text.connect('activate', () => {
this._convert(':');
})
extension.js:59
this._entry.clutter_text.connect('text-changed', () => {
this._updateResult('');
})
Thank You!