ChatGPT for StackOverflow
ChatGPT's response to every StackOverflow question
Qu'est-ce que ChatGPT for StackOverflow ?
ChatGPT for StackOverflow est une extension Chrome développée par devshobrook, et sa fonction principale est "ChatGPT's response to every StackOverflow question".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ChatGPT for StackOverflow
Téléchargez les fichiers d'extension ChatGPT for StackOverflow au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | ChatGPT for StackOverflow |
ID | apjhekoaogdimcgiihoncakocdddhmlk |
URL Officiel | https://chromewebstore.google.com/detail/chatgpt-for-stackoverflow/apjhekoaogdimcgiihoncakocdddhmlk |
Description | ChatGPT's response to every StackOverflow question |
Taille du Fichier | 888 KB |
Nombre d'Installations | 3,000 |
Version Actuelle | 0.3.0 |
Dernière Mise à Jour | 2023-03-01 |
Date de Publication | 2023-01-21 |
Évaluation | 4.60/5 Total 5 Évaluations |
Développeur | devshobrook |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://chatoverflow.ai/ |
Langues Prises en Charge | 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" ] } ] } |