├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── images ├── icon-128.png ├── icon-16.png ├── icon-32.png └── icon-48.png ├── manifest.json ├── package.json ├── postcss.config.cjs ├── src ├── App.tsx ├── global.d.ts ├── index.css ├── main.tsx ├── pages │ ├── background │ │ └── index.ts │ ├── content-script │ │ ├── content.tsx │ │ ├── index.html │ │ └── index.tsx │ ├── options │ │ ├── index.html │ │ ├── index.tsx │ │ └── options.tsx │ └── popup │ │ ├── index.html │ │ ├── index.tsx │ │ └── popup.tsx ├── utils │ ├── index.ts │ └── openai.ts └── vite-env.d.ts ├── tailwind.config.cjs ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.env.example: -------------------------------------------------------------------------------- 1 | VITE_Open_AI_Key = "Your API Key" 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/README.md -------------------------------------------------------------------------------- /images/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/images/icon-128.png -------------------------------------------------------------------------------- /images/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/images/icon-16.png -------------------------------------------------------------------------------- /images/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/images/icon-32.png -------------------------------------------------------------------------------- /images/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/images/icon-48.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/background/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/src/pages/background/index.ts -------------------------------------------------------------------------------- /src/pages/content-script/content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/src/pages/content-script/content.tsx -------------------------------------------------------------------------------- /src/pages/content-script/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/src/pages/content-script/index.html -------------------------------------------------------------------------------- /src/pages/content-script/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/src/pages/content-script/index.tsx -------------------------------------------------------------------------------- /src/pages/options/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/src/pages/options/index.html -------------------------------------------------------------------------------- /src/pages/options/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/src/pages/options/index.tsx -------------------------------------------------------------------------------- /src/pages/options/options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/src/pages/options/options.tsx -------------------------------------------------------------------------------- /src/pages/popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/src/pages/popup/index.html -------------------------------------------------------------------------------- /src/pages/popup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/src/pages/popup/index.tsx -------------------------------------------------------------------------------- /src/pages/popup/popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/src/pages/popup/popup.tsx -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/src/utils/openai.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayooear/gpt-react-typescript-chrome-extension-starter/HEAD/vite.config.ts --------------------------------------------------------------------------------