SublimeGPT: ChatGPT Everywhere

Use ChatGPT everywhere. See ChatGPT responses alongside Google search results. Create prompt shortcuts and use them in any website.

Qu'est-ce que SublimeGPT: ChatGPT Everywhere ?

SublimeGPT: ChatGPT Everywhere est une extension Chrome développée par https://sublimegpt.com, et sa fonction principale est "Use ChatGPT everywhere. See ChatGPT responses alongside Google search results. Create prompt shortcuts and use them in any website.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension SublimeGPT: ChatGPT Everywhere

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

                        SublimeGPT lets you:
- Open ChatGPT inside any website.
- See ChatGPT response alongside Google search results.
- Create your own prompts and use them on selected text in any web page.

How to open chat inside any website:
1. Make sure you're logged into your ChatGPT account.
2. Open any website and press Ctrl+Up Arrow (Cmd+Up Arrow on Mac) or click the extension icon on the navigation bar. You can change the keyboard shortcut in your browser's extension shortcuts page.
3. Start chatting with ChatGPT in the overlay dialog that opens up.

SublimeGPT is just a helper tool and is not affiliated with OpenAI or ChatGPT.                    

Informations de Base sur l'Extension

Nom SublimeGPT: ChatGPT Everywhere SublimeGPT: ChatGPT Everywhere
ID eecockeebhenbihmkaamjlgoehkngjea
URL Officiel https://chromewebstore.google.com/detail/sublimegpt-chatgpt-everyw/eecockeebhenbihmkaamjlgoehkngjea
Description Use ChatGPT everywhere. See ChatGPT responses alongside Google search results. Create prompt shortcuts and use them in any website.
Taille du Fichier 60.11 KB
Nombre d'Installations 407
Version Actuelle 0.2.0
Dernière Mise à Jour 2023-04-04
Date de Publication 2023-03-09
Évaluation 3.71/5 Total 7 Évaluations
Développeur https://sublimegpt.com
Email [email protected]
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SublimeGPT: ChatGPT Everywhere",
    "short_name": "SublimeGPT",
    "version": "0.2.0",
    "description": "Use ChatGPT everywhere. See ChatGPT responses alongside Google search results. Create prompt shortcuts and use them in any website.",
    "icons": {
        "16": "images\/logo-16.png",
        "32": "images\/logo-32.png",
        "48": "images\/logo-48.png",
        "128": "images\/logo-128.png"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "https:\/\/*.openai.com\/*"
    ],
    "action": {
        "default_title": "Open Chat"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/main.css"
            ],
            "js": [
                "js\/main.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "app\/*"
            ]
        }
    ],
    "commands": {
        "open-app": {
            "suggested_key": {
                "default": "Ctrl+Up",
                "mac": "Command+Up"
            },
            "description": "Open chat in the current tab."
        }
    }
}