GoogleScriptGPT

An Extension that uses AI to write and explain google apps script code for you.

Cos'è GoogleScriptGPT?

GoogleScriptGPT è un'estensione di Chrome sviluppata da Hassan Raza, e la sua funzione principale è "An Extension that uses AI to write and explain google apps script code for you.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione GoogleScriptGPT

Scarica i file di estensione GoogleScriptGPT 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 will help you write and explain Google Apps Script Code using AI.

Features:
- Write Google Apps Script Code
- Explain Google Apps Script Code
- Access to the Past Queries
- More Features Coming Soon...

This Extension is in Beta. So please provide your feedback to help us improve the extension.

This Extension is not affiliated with or endorsed or sponsored by Google.                    

Informazioni di Base sull'Estensione

Nome GoogleScriptGPT GoogleScriptGPT
ID aakmllddlcknkbcgjabmcgggfciofbgo
URL Ufficiale https://chromewebstore.google.com/detail/googlescriptgpt/aakmllddlcknkbcgjabmcgggfciofbgo
Descrizione An Extension that uses AI to write and explain google apps script code for you.
Dimensione del File 592 KB
Conteggio Installazioni 444
Versione Corrente 1.0.0
Ultimo Aggiornamento 2023-04-30
Data di Pubblicazione 2023-04-29
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore Hassan Raza
Email [email protected]
Tipo di Pagamento in_app
Sito Web dell'Estensione https://googlescriptgpt.com/
URL della Pagina della Politica sulla Privacy https://www.freeprivacypolicy.com/live/89b48000-4100-46d4-a8cb-d17ca575a863
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "An Extension that uses AI to write and explain google apps script code for you.",
    "version": "1.0.0",
    "manifest_version": 3,
    "name": "GoogleScriptGPT",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "main.png"
    },
    "icons": {
        "128": "main.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "reactsuite.min.css",
                "content.styles.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png",
                "inject.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}