ChatGPT Extension

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

Cos'è ChatGPT Extension?

ChatGPT Extension è un'estensione di Chrome sviluppata da Oliver N., e la sua funzione principale è "This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione ChatGPT Extension

Scarica i file di estensione ChatGPT Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome ChatGPT Extension ChatGPT Extension
ID ehigecokdaejpecogfefhmoemlapfjko
URL Ufficiale https://chromewebstore.google.com/detail/chatgpt-extension/ehigecokdaejpecogfefhmoemlapfjko
Descrizione This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.
Dimensione del File 281 KB
Conteggio Installazioni 716
Versione Corrente 0.1.0
Ultimo Aggiornamento 2022-12-21
Data di Pubblicazione 2022-12-21
Valutazione 1.00/5 Totale 2 Valutazioni
Sviluppatore Oliver N.
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/iOliverNguyen/chatgpt-box-extension
Lingue Supportate 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\/*"
            ]
        }
    ]
}