├── .github └── workflows │ └── build.yml ├── .gitignore ├── .husky └── pre-commit ├── LICENSE ├── README.md ├── lint-staged.config.cjs ├── options.html ├── package.json ├── pnpm-lock.yaml ├── postcss.config.cjs ├── public ├── cover.png ├── icon.png ├── icon128.png ├── icon16.png ├── icon32.png ├── icon48.png └── manifest.json ├── sidePanel.html ├── src ├── background.ts ├── content-script.ts ├── deploy.ts ├── options.css ├── options.tsx ├── sidePanel.css └── sidePanel.tsx ├── tailwind.config.js ├── tsconfig.json └── vite.config.ts /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/README.md -------------------------------------------------------------------------------- /lint-staged.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/lint-staged.config.cjs -------------------------------------------------------------------------------- /options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/options.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/public/cover.png -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/public/icon128.png -------------------------------------------------------------------------------- /public/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/public/icon16.png -------------------------------------------------------------------------------- /public/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/public/icon32.png -------------------------------------------------------------------------------- /public/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/public/icon48.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/public/manifest.json -------------------------------------------------------------------------------- /sidePanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/sidePanel.html -------------------------------------------------------------------------------- /src/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/src/background.ts -------------------------------------------------------------------------------- /src/content-script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/src/content-script.ts -------------------------------------------------------------------------------- /src/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/src/deploy.ts -------------------------------------------------------------------------------- /src/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/src/options.css -------------------------------------------------------------------------------- /src/options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/src/options.tsx -------------------------------------------------------------------------------- /src/sidePanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/src/sidePanel.css -------------------------------------------------------------------------------- /src/sidePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/src/sidePanel.tsx -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelYuhe/Artifacts-for-ChatGPT/HEAD/vite.config.ts --------------------------------------------------------------------------------