ChatGPT for StackOverflow
ChatGPT's response to every StackOverflow question
Wat is ChatGPT for StackOverflow?
ChatGPT for StackOverflow is een Chrome-extensie ontwikkeld door devshobrook, en de belangrijkste functie is "ChatGPT's response to every StackOverflow question".
Extensie Screenshots
Download het CRX-bestand van de extensie ChatGPT for StackOverflow
Download ChatGPT for StackOverflow-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | ChatGPT for StackOverflow |
ID | apjhekoaogdimcgiihoncakocdddhmlk |
Officiële URL | https://chromewebstore.google.com/detail/chatgpt-for-stackoverflow/apjhekoaogdimcgiihoncakocdddhmlk |
Beschrijving | ChatGPT's response to every StackOverflow question |
Bestandsgrootte | 888 KB |
Aantal Installaties | 3,000 |
Huidige Versie | 0.3.0 |
Laatst Bijgewerkt | 2023-03-01 |
Publicatiedatum | 2023-01-21 |
Beoordeling | 4.60/5 Totaal 5 Beoordelingen |
Ontwikkelaar | devshobrook |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://chatoverflow.ai/ |
Ondersteunde Talen | 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" ] } ] } |