├── .github └── workflows │ └── submit.yml ├── .gitignore ├── .prettierrc.cjs ├── LICENSE ├── README.md ├── assets └── icon.png ├── background ├── index.ts └── messages │ └── openai.ts ├── contents └── pageRequestHandler.ts ├── helpers ├── domHelpers.ts └── openaiChatApiHelpers.tsx ├── options.tsx ├── package.json ├── popup.tsx ├── sandboxes └── calculate.ts ├── tsconfig.json └── yarn.lock /.github/workflows/submit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/browser-friend/HEAD/.github/workflows/submit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/browser-friend/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/browser-friend/HEAD/.prettierrc.cjs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/browser-friend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/browser-friend/HEAD/README.md -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/browser-friend/HEAD/assets/icon.png -------------------------------------------------------------------------------- /background/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/browser-friend/HEAD/background/index.ts -------------------------------------------------------------------------------- /background/messages/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/browser-friend/HEAD/background/messages/openai.ts -------------------------------------------------------------------------------- /contents/pageRequestHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/browser-friend/HEAD/contents/pageRequestHandler.ts -------------------------------------------------------------------------------- /helpers/domHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/browser-friend/HEAD/helpers/domHelpers.ts -------------------------------------------------------------------------------- /helpers/openaiChatApiHelpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/browser-friend/HEAD/helpers/openaiChatApiHelpers.tsx -------------------------------------------------------------------------------- /options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/browser-friend/HEAD/options.tsx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/browser-friend/HEAD/package.json -------------------------------------------------------------------------------- /popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/browser-friend/HEAD/popup.tsx -------------------------------------------------------------------------------- /sandboxes/calculate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/browser-friend/HEAD/sandboxes/calculate.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/browser-friend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantino/browser-friend/HEAD/yarn.lock --------------------------------------------------------------------------------