ChatGPT For Google
Can't find what you're looking for with Google? Ask an artificial intelligence instead.
O que é ChatGPT For Google?
ChatGPT For Google é uma extensão do Chrome desenvolvida por rgantzos, e sua principal característica é "Can't find what you're looking for with Google? Ask an artificial intelligence instead.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ChatGPT For Google
Baixe arquivos de extensão ChatGPT For 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
Sometimes it can be hard to articulate what you're looking for to the extent that Google understands what you're saying, and can sometimes find the right results. In those cases, GoogleGPT is here for you. You can easily click a button on the Google search page to replace the search bar with a ChatGPT input.
Informações Básicas da Extensão
Nome | ChatGPT For Google |
ID | jgpockpcjdfkmaiiefcbfjaaekocfmha |
URL Oficial | https://chromewebstore.google.com/detail/chatgpt-for-google/jgpockpcjdfkmaiiefcbfjaaekocfmha |
Descrição | Can't find what you're looking for with Google? Ask an artificial intelligence instead. |
Tamanho do Arquivo | 49.32 KB |
Contagem de Instalações | 26 |
Versão Atual | 0.0.1 |
Última Atualização | 2023-03-06 |
Data de Publicação | 2023-03-05 |
Desenvolvedor | rgantzos |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://docs.scratchtools.app/docs/privacy-policy |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ChatGPT For Google", "short_name": "GoogleGPT", "manifest_version": 3, "version": "0.0.1", "version_name": "0.0.1", "description": "Can't find what you're looking for with Google? Ask an artificial intelligence instead.", "author": "Ronan", "host_permissions": [ "https:\/\/www.google.com\/*" ], "action": { "default_icon": "\/logo.png", "default_popup": "\/popup.html", "default_title": "GoogleGPT" }, "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/*" ], "js": [ "ask.js" ], "css": [ "style.css" ] } ], "icons": { "16": "\/logo.png", "48": "\/logo.png", "128": "\/logo.png" } } |