├── .env.example ├── .gitignore ├── .parcelrc ├── .postcssrc ├── README.md ├── package.json ├── src ├── App.tsx ├── ChatBubble.tsx ├── ai-helper.tsx ├── extension-helper.tsx ├── index.css ├── index.html ├── index.tsx ├── tool-controller.tsx └── useAI.ts ├── static ├── background.js ├── content.js └── manifest.json ├── tailwind.config.js └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY=sk-123 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olliethedev/gpt4-vision-chrome-extension/HEAD/.gitignore -------------------------------------------------------------------------------- /.parcelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olliethedev/gpt4-vision-chrome-extension/HEAD/.parcelrc -------------------------------------------------------------------------------- /.postcssrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olliethedev/gpt4-vision-chrome-extension/HEAD/.postcssrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olliethedev/gpt4-vision-chrome-extension/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olliethedev/gpt4-vision-chrome-extension/HEAD/package.json -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olliethedev/gpt4-vision-chrome-extension/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/ChatBubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olliethedev/gpt4-vision-chrome-extension/HEAD/src/ChatBubble.tsx -------------------------------------------------------------------------------- /src/ai-helper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olliethedev/gpt4-vision-chrome-extension/HEAD/src/ai-helper.tsx -------------------------------------------------------------------------------- /src/extension-helper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olliethedev/gpt4-vision-chrome-extension/HEAD/src/extension-helper.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olliethedev/gpt4-vision-chrome-extension/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olliethedev/gpt4-vision-chrome-extension/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olliethedev/gpt4-vision-chrome-extension/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/tool-controller.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olliethedev/gpt4-vision-chrome-extension/HEAD/src/tool-controller.tsx -------------------------------------------------------------------------------- /src/useAI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olliethedev/gpt4-vision-chrome-extension/HEAD/src/useAI.ts -------------------------------------------------------------------------------- /static/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olliethedev/gpt4-vision-chrome-extension/HEAD/static/background.js -------------------------------------------------------------------------------- /static/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olliethedev/gpt4-vision-chrome-extension/HEAD/static/content.js -------------------------------------------------------------------------------- /static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olliethedev/gpt4-vision-chrome-extension/HEAD/static/manifest.json -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olliethedev/gpt4-vision-chrome-extension/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olliethedev/gpt4-vision-chrome-extension/HEAD/tsconfig.json --------------------------------------------------------------------------------