Ask ChatGPT

Allows to ask ChatGPT right from your Chrome OmniBar (a.k.a Adress Bar)!

Qu'est-ce que Ask ChatGPT ?

Ask ChatGPT est une extension Chrome développée par codemonument, et sa fonction principale est "Allows to ask ChatGPT right from your Chrome OmniBar (a.k.a Adress Bar)!".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Ask ChatGPT

Téléchargez les fichiers d'extension Ask ChatGPT 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

                        This Extension brings the power of ChatGPT right into your Chrome OmniBar! 

How to use it: 
1. Open a new Tab 
2. Type: "gpt", followed by a space* 
    * If you already have a shortcut called gpt, 
       you might need to press TAB instead of 
       space to activate the extension
3. Insert any query you like and press enter 
4. You will be redirected to chat.openai.com and your query will be inserted and submitted automatically! 

Extra Feature: 
The extension tries to detect whether you're logged into ChatGPT or not. 
If you see the message 

"You seem to not be logged in! Please log in at https://chat.openai.com/auth/login"

you can press enter and you'll be directly redirected to the login page!                    

Informations de Base sur l'Extension

Nom Ask ChatGPT Ask ChatGPT
ID kfjlbdhonplbiikgogomppidenoaichc
URL Officiel https://chromewebstore.google.com/detail/ask-chatgpt/kfjlbdhonplbiikgogomppidenoaichc
Description Allows to ask ChatGPT right from your Chrome OmniBar (a.k.a Adress Bar)!
Taille du Fichier 112 KB
Nombre d'Installations 3,181
Version Actuelle 1.0.1
Dernière Mise à Jour 2023-03-05
Date de Publication 2023-03-03
Évaluation 5.00/5 Total 1 Évaluations
Développeur codemonument
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/codemonument/chrome-ask-gpt
URL de la Page d'Aide https://github.com/codemonument/chrome-ask-gpt/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ask ChatGPT",
    "description": "Allows to ask ChatGPT right from your Chrome OmniBar (a.k.a Adress Bar)!",
    "version": "1.0.1",
    "manifest_version": 3,
    "author": "[email protected]",
    "omnibox": {
        "keyword": "gpt"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        "http:\/\/chat.openai.com\/*",
        "https:\/\/chat.openai.com\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "icons": {
        "16": "assets\/icon_16x16.png",
        "32": "assets\/icon_32x32.png",
        "64": "assets\/icon_64x64.png",
        "128": "assets\/icon_128x128.png",
        "256": "assets\/icon_256x256.png",
        "512": "assets\/icon_512x512.png"
    }
}