Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
1. Please remove `stylesheet.css` since you are not using it: https://gjs.guide/extensions/review-guidelines/review-guidelines.html#don-t-include-unnecessary-files 2. You cannot create instances in global scope which is the same as init (line 56 extension.js): https://gjs.guide/extensions/review-guidelines/review-guidelines.html#only-use-init-for-initialization Move that line to enable and null that out in disable. 3. Null out in disable: ```js this._settings = null; ``` 4. What is local host pointing to (line 101 and 123 extension.js)?