GoogleChatGPT: ChatGPT with Google
Augment your ChatGPT prompts with relevant results from Google.
O que é GoogleChatGPT: ChatGPT with Google?
GoogleChatGPT: ChatGPT with Google é uma extensão do Chrome desenvolvida por hunkim, e sua principal característica é "Augment your ChatGPT prompts with relevant results from Google.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão GoogleChatGPT: ChatGPT with Google
Baixe arquivos de extensão GoogleChatGPT: ChatGPT with Google no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
GoogleChatGPT: Enhance Your ChatGPT Experience with Relevant Google Results! With GoogleChatGPT, you can now augment your ChatGPT prompts with relevant results from Google. This powerful Chrome extension integrates ChatGPT's language model with Google search, giving you access to a wealth of information at your fingertips. Whether you're looking for answers to complex questions, or simply want to expand your knowledge, GoogleChatGPT has got you covered. GoogleChatGPT is the ultimate tool for anyone looking to enhance their ChatGPT experience. Install it today and discover a whole new world of information and knowledge!
Informações Básicas da Extensão
Nome | |
ID | mdonbhpnpdajiekihkjeneenjhmeipam |
URL Oficial | https://chrome.google.com/webstore/detail/googlechatgpt-chatgpt-wit/mdonbhpnpdajiekihkjeneenjhmeipam |
Descrição | Augment your ChatGPT prompts with relevant results from Google. |
Tamanho do Arquivo | 110 KB |
Contagem de Instalações | 2,000 |
Versão Atual | 2023.02.04 |
Última Atualização | 2023-02-05 |
Data de Publicação | 2023-02-05 |
Classificação | 3.75/5 Total de 4 Avaliações |
Desenvolvedor | hunkim |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | de,en,fr,es,it,pt-BR,zh-CN,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "2023.02.04", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/ddg-webapp-aagd.vercel.app\/*" ], "background": { "service_worker": "background\/bg.js" }, "action": [], "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/chat*" ], "js": [ "content-scripts\/mainUI.js" ] } ], "options_ui": { "page": "options\/options.html", "open_in_tab": true, "css": [ "options\/options.css" ] }, "web_accessible_resources": [ { "resources": [ "content-scripts\/mainUI.css", "icons\/icon48.png" ], "matches": [ "https:\/\/chat.openai.com\/*" ] } ] } |