├── .gitignore ├── LICENSE ├── README.md ├── auth.html ├── auth.js ├── background.js ├── content-script.js ├── images └── icon.png ├── manifest.json ├── popup.html └── popup.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanwhlee/LazyGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanwhlee/LazyGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanwhlee/LazyGPT/HEAD/README.md -------------------------------------------------------------------------------- /auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanwhlee/LazyGPT/HEAD/auth.html -------------------------------------------------------------------------------- /auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanwhlee/LazyGPT/HEAD/auth.js -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanwhlee/LazyGPT/HEAD/background.js -------------------------------------------------------------------------------- /content-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanwhlee/LazyGPT/HEAD/content-script.js -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanwhlee/LazyGPT/HEAD/images/icon.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanwhlee/LazyGPT/HEAD/manifest.json -------------------------------------------------------------------------------- /popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanwhlee/LazyGPT/HEAD/popup.html -------------------------------------------------------------------------------- /popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanwhlee/LazyGPT/HEAD/popup.js --------------------------------------------------------------------------------