├── .gitignore ├── LICENSE ├── README.md ├── manifest.json └── src ├── .DS_Store ├── html └── popup.html ├── icons └── chat-128.png └── js ├── background.js ├── highlight.js ├── jquery-3.6.3.js └── popup.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyishi/gpt-index-extension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyishi/gpt-index-extension/HEAD/README.md -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyishi/gpt-index-extension/HEAD/manifest.json -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyishi/gpt-index-extension/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/html/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyishi/gpt-index-extension/HEAD/src/html/popup.html -------------------------------------------------------------------------------- /src/icons/chat-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyishi/gpt-index-extension/HEAD/src/icons/chat-128.png -------------------------------------------------------------------------------- /src/js/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyishi/gpt-index-extension/HEAD/src/js/background.js -------------------------------------------------------------------------------- /src/js/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyishi/gpt-index-extension/HEAD/src/js/highlight.js -------------------------------------------------------------------------------- /src/js/jquery-3.6.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyishi/gpt-index-extension/HEAD/src/js/jquery-3.6.3.js -------------------------------------------------------------------------------- /src/js/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hongyishi/gpt-index-extension/HEAD/src/js/popup.js --------------------------------------------------------------------------------