GoogleChatGPT: ChatGPT with Google
Augment your ChatGPT prompts with relevant results from Google.
Qu'est-ce que GoogleChatGPT: ChatGPT with Google ?
GoogleChatGPT: ChatGPT with Google est une extension Chrome développée par hunkim, et sa fonction principale est "Augment your ChatGPT prompts with relevant results from Google.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension GoogleChatGPT: ChatGPT with Google
Téléchargez les fichiers d'extension GoogleChatGPT: ChatGPT with Google 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
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!
Informations de Base sur l'Extension
Nom | |
ID | mdonbhpnpdajiekihkjeneenjhmeipam |
URL Officiel | https://chrome.google.com/webstore/detail/googlechatgpt-chatgpt-wit/mdonbhpnpdajiekihkjeneenjhmeipam |
Description | Augment your ChatGPT prompts with relevant results from Google. |
Taille du Fichier | 110 KB |
Nombre d'Installations | 2,000 |
Version Actuelle | 2023.02.04 |
Dernière Mise à Jour | 2023-02-05 |
Date de Publication | 2023-02-05 |
Évaluation | 3.75/5 Total 4 Évaluations |
Développeur | hunkim |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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\/*" ] } ] } |