Track time spent on GitLab issues with a convenient system tray timer. This extension is not affiliated, funded, or in any way associated with GitLab.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
1. Top open file (line 803 `prefs.js`): ```js Gio.AppInfo.launch_default_for_uri('URI', null); ``` or ```js let launcher = new Gtk.UriLauncher('URI'); let cancelable = new Gio.Cancellable(); launcher.launch(window, cancelable, (luncher, res) => luncher.launch_finish(res)); ``` 2. You have many code duplications in `avatarLoader.js` for soup. Better to create a helper funciton that can fetch the icon and use that instead.