ChatGPT for StackOverflow
ChatGPT's response to every StackOverflow question
O que é ChatGPT for StackOverflow?
ChatGPT for StackOverflow é uma extensão do Chrome desenvolvida por devshobrook, e sua principal característica é "ChatGPT's response to every StackOverflow question".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ChatGPT for StackOverflow
Baixe arquivos de extensão ChatGPT for StackOverflow 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
See ChatGPT's response to every question on StackOverflow. With this extension, you can sidestep StackOverflow's ban on ChatGPT so that no question will ever be unanswered. Source code: https://github.com/shobrook/ChatOverflow
Informações Básicas da Extensão
Nome | ChatGPT for StackOverflow |
ID | apjhekoaogdimcgiihoncakocdddhmlk |
URL Oficial | https://chromewebstore.google.com/detail/chatgpt-for-stackoverflow/apjhekoaogdimcgiihoncakocdddhmlk |
Descrição | ChatGPT's response to every StackOverflow question |
Tamanho do Arquivo | 888 KB |
Contagem de Instalações | 3,000 |
Versão Atual | 0.3.0 |
Última Atualização | 2023-03-01 |
Data de Publicação | 2023-01-21 |
Classificação | 4.60/5 Total de 5 Avaliações |
Desenvolvedor | devshobrook |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://chatoverflow.ai/ |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT for StackOverflow", "version": "0.3.0", "description": "ChatGPT's response to every StackOverflow question", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_title": "ChatGPT for StackOverflow", "default_popup": "popup.html" }, "host_permissions": [ "https:\/\/*.openai.com\/" ], "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "http:\/\/stackoverflow.com\/questions\/*", "http:\/\/www.stackoverflow.com\/questions\/*", "https:\/\/stackoverflow.com\/questions\/*", "https:\/\/www.stackoverflow.com\/questions\/*" ], "run_at": "document_idle", "js": [ "contentScript.js" ] } ] } |