GoogleScriptGPT

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

Was ist GoogleScriptGPT?

GoogleScriptGPT ist eine Chrome-Erweiterung, die von Hassan Raza entwickelt wurde, und ihr Hauptmerkmal ist "An Extension that uses AI to write and explain google apps script code for you.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

GoogleScriptGPT-Erweiterungs-CRX-Datei herunterladen

Laden Sie GoogleScriptGPT-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 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.                    

Grundlegende Informationen zur Erweiterung

Name GoogleScriptGPT GoogleScriptGPT
ID aakmllddlcknkbcgjabmcgggfciofbgo
Offizielle URL https://chromewebstore.google.com/detail/googlescriptgpt/aakmllddlcknkbcgjabmcgggfciofbgo
Beschreibung An Extension that uses AI to write and explain google apps script code for you.
Dateigröße 592 KB
Installationsanzahl 444
Aktuelle Version 1.0.0
Letztes Update 2023-04-30
Veröffentlichungsdatum 2023-04-29
Bewertung 1.00/5 Insgesamt 1 Bewertungen
Entwickler Hassan Raza
E-Mail [email protected]
Zahlungsart in_app
Erweiterungswebsite https://googlescriptgpt.com/
URL der Datenschutzrichtlinien-Seite https://www.freeprivacypolicy.com/live/89b48000-4100-46d4-a8cb-d17ca575a863
Unterstützte Sprachen 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"
    ]
}