ChatGPT Extension

This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.

Was ist ChatGPT Extension?

ChatGPT Extension ist eine Chrome-Erweiterung, die von Oliver N. entwickelt wurde, und ihr Hauptmerkmal ist "This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.".

Erweiterungsscreenshots

screenshot

ChatGPT Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie ChatGPT Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session. Simply click the extension icon in your browser toolbar to activate ChatGPT. ChatGPT is a powerful language model that uses deep learning to produce human-like responses to text input.                    

Grundlegende Informationen zur Erweiterung

Name ChatGPT Extension ChatGPT Extension
ID ehigecokdaejpecogfefhmoemlapfjko
Offizielle URL https://chromewebstore.google.com/detail/chatgpt-extension/ehigecokdaejpecogfefhmoemlapfjko
Beschreibung This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.
Dateigröße 281 KB
Installationsanzahl 716
Aktuelle Version 0.1.0
Letztes Update 2022-12-21
Veröffentlichungsdatum 2022-12-21
Bewertung 1.00/5 Insgesamt 2 Bewertungen
Entwickler Oliver N.
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/iOliverNguyen/chatgpt-box-extension
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": [],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "css": [
                "content_script.css"
            ],
            "js": [
                "content_script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.",
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "96": "icon96.png",
        "128": "icon128.png",
        "512": "icon512.png"
    },
    "manifest_version": 3,
    "name": "ChatGPT Extension",
    "version": "0.1.0",
    "web_accessible_resources": [
        {
            "extension_ids": [],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "resources": [
                "assets\/*"
            ]
        }
    ]
}