Detects the currently playing song via MPRIS and shows its lyrics (fetched from lrclib) in a panel popup.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
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:39
this.menu.connect("open-state-changed", (_menu, isOpen) => {
if (isOpen && this._cacheText === null)
this._refresh().catch((e) => logError(e, "Lyrics Grabber"));
})