├── .gitignore ├── LICENSE ├── README.md ├── googlechatgpt-current-chrome.zip ├── package.json ├── src ├── _locales │ ├── de │ │ └── messages.json │ ├── en │ │ └── messages.json │ ├── es │ │ └── messages.json │ ├── fr │ │ └── messages.json │ ├── it │ │ └── messages.json │ ├── ja │ │ └── messages.json │ ├── ko │ │ └── messages.json │ ├── pt_BR │ │ └── messages.json │ └── zh_CN │ │ └── messages.json ├── assets │ └── icons │ │ ├── icon128.png │ │ ├── icon16.png │ │ └── icon48.png ├── background │ └── bg.ts ├── components │ ├── dropdown.tsx │ ├── errorMessage.tsx │ ├── footer.tsx │ ├── navBar.tsx │ ├── promptEditor.tsx │ ├── socialIconButton.tsx │ ├── toolbar.tsx │ └── tooltipWrapper.tsx ├── content-scripts │ ├── api.ts │ └── mainUI.tsx ├── declaration.d.ts ├── manifest.json ├── manifest.v2.json ├── options │ ├── options.html │ └── options.tsx ├── style │ └── base.css └── util │ ├── createShadowRoot.ts │ ├── elementFinder.ts │ ├── icons.tsx │ ├── localization.ts │ ├── localizedStrings.json │ ├── promptManager.ts │ ├── regionOptions.json │ ├── timePeriodOptions.json │ └── userConfig.ts ├── tailwind.config.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/README.md -------------------------------------------------------------------------------- /googlechatgpt-current-chrome.zip: -------------------------------------------------------------------------------- 1 | build/googlechatgpt-2023.02.04-chrome.zip -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/package.json -------------------------------------------------------------------------------- /src/_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/_locales/de/messages.json -------------------------------------------------------------------------------- /src/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/_locales/en/messages.json -------------------------------------------------------------------------------- /src/_locales/es/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/_locales/es/messages.json -------------------------------------------------------------------------------- /src/_locales/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/_locales/fr/messages.json -------------------------------------------------------------------------------- /src/_locales/it/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/_locales/it/messages.json -------------------------------------------------------------------------------- /src/_locales/ja/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/_locales/ja/messages.json -------------------------------------------------------------------------------- /src/_locales/ko/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/_locales/ko/messages.json -------------------------------------------------------------------------------- /src/_locales/pt_BR/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/_locales/pt_BR/messages.json -------------------------------------------------------------------------------- /src/_locales/zh_CN/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/_locales/zh_CN/messages.json -------------------------------------------------------------------------------- /src/assets/icons/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/assets/icons/icon128.png -------------------------------------------------------------------------------- /src/assets/icons/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/assets/icons/icon16.png -------------------------------------------------------------------------------- /src/assets/icons/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/assets/icons/icon48.png -------------------------------------------------------------------------------- /src/background/bg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/background/bg.ts -------------------------------------------------------------------------------- /src/components/dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/components/dropdown.tsx -------------------------------------------------------------------------------- /src/components/errorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/components/errorMessage.tsx -------------------------------------------------------------------------------- /src/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/components/footer.tsx -------------------------------------------------------------------------------- /src/components/navBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/components/navBar.tsx -------------------------------------------------------------------------------- /src/components/promptEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/components/promptEditor.tsx -------------------------------------------------------------------------------- /src/components/socialIconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/components/socialIconButton.tsx -------------------------------------------------------------------------------- /src/components/toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/components/toolbar.tsx -------------------------------------------------------------------------------- /src/components/tooltipWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/components/tooltipWrapper.tsx -------------------------------------------------------------------------------- /src/content-scripts/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/content-scripts/api.ts -------------------------------------------------------------------------------- /src/content-scripts/mainUI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/content-scripts/mainUI.tsx -------------------------------------------------------------------------------- /src/declaration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/declaration.d.ts -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/manifest.v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/manifest.v2.json -------------------------------------------------------------------------------- /src/options/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/options/options.html -------------------------------------------------------------------------------- /src/options/options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/options/options.tsx -------------------------------------------------------------------------------- /src/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/style/base.css -------------------------------------------------------------------------------- /src/util/createShadowRoot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/util/createShadowRoot.ts -------------------------------------------------------------------------------- /src/util/elementFinder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/util/elementFinder.ts -------------------------------------------------------------------------------- /src/util/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/util/icons.tsx -------------------------------------------------------------------------------- /src/util/localization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/util/localization.ts -------------------------------------------------------------------------------- /src/util/localizedStrings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/util/localizedStrings.json -------------------------------------------------------------------------------- /src/util/promptManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/util/promptManager.ts -------------------------------------------------------------------------------- /src/util/regionOptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/util/regionOptions.json -------------------------------------------------------------------------------- /src/util/timePeriodOptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/util/timePeriodOptions.json -------------------------------------------------------------------------------- /src/util/userConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/src/util/userConfig.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/chatgpt-with-google/HEAD/tsconfig.json --------------------------------------------------------------------------------