├── .babelrc ├── .eslintrc.js ├── .gitignore ├── .npmrc ├── PrivacyPolicy.md ├── README.md ├── docs └── readme-translations │ └── cn-readme.md ├── jest.config.js ├── package.json ├── public ├── icon128.png ├── icon16.png ├── icon32.png ├── icon48.png ├── manifest.json └── popup.html ├── src ├── App.css ├── App.tsx ├── background.ts ├── content.ts ├── custom.d.ts ├── dom │ ├── __tests__ │ │ ├── domEventListener.test.ts │ │ └── prunedDOM.test.ts │ ├── domEventListener.ts │ ├── getFocusDOM.ts │ └── prunedDOM.ts ├── i18n │ ├── __tests__ │ │ └── i18n.test.ts │ ├── i18n.ts │ └── translation.ts ├── index.ts ├── logo.svg ├── popup.css ├── popup.tsx ├── prompt │ └── prompt.ts ├── report.ts ├── sound │ └── read.ts ├── storage.ts ├── types │ └── interface.ts └── utils │ └── utils.ts ├── tea.yaml ├── tsconfig.json └── webpack.config.js / .babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/ .babelrc -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/.npmrc -------------------------------------------------------------------------------- /PrivacyPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/PrivacyPolicy.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/README.md -------------------------------------------------------------------------------- /docs/readme-translations/cn-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/docs/readme-translations/cn-readme.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/package.json -------------------------------------------------------------------------------- /public/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/public/icon128.png -------------------------------------------------------------------------------- /public/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/public/icon16.png -------------------------------------------------------------------------------- /public/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/public/icon32.png -------------------------------------------------------------------------------- /public/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/public/icon48.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/public/popup.html -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/src/background.ts -------------------------------------------------------------------------------- /src/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/src/content.ts -------------------------------------------------------------------------------- /src/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/src/custom.d.ts -------------------------------------------------------------------------------- /src/dom/__tests__/domEventListener.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/src/dom/__tests__/domEventListener.test.ts -------------------------------------------------------------------------------- /src/dom/__tests__/prunedDOM.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/src/dom/__tests__/prunedDOM.test.ts -------------------------------------------------------------------------------- /src/dom/domEventListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/src/dom/domEventListener.ts -------------------------------------------------------------------------------- /src/dom/getFocusDOM.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/src/dom/getFocusDOM.ts -------------------------------------------------------------------------------- /src/dom/prunedDOM.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/src/dom/prunedDOM.ts -------------------------------------------------------------------------------- /src/i18n/__tests__/i18n.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/src/i18n/__tests__/i18n.test.ts -------------------------------------------------------------------------------- /src/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/src/i18n/i18n.ts -------------------------------------------------------------------------------- /src/i18n/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/src/i18n/translation.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/src/popup.css -------------------------------------------------------------------------------- /src/popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/src/popup.tsx -------------------------------------------------------------------------------- /src/prompt/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/src/prompt/prompt.ts -------------------------------------------------------------------------------- /src/report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/src/report.ts -------------------------------------------------------------------------------- /src/sound/read.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/src/sound/read.ts -------------------------------------------------------------------------------- /src/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/src/storage.ts -------------------------------------------------------------------------------- /src/types/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/src/types/interface.ts -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /tea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/tea.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clean99/TalkGuidanceGPT/HEAD/webpack.config.js --------------------------------------------------------------------------------