GoogleScriptGPT

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

Apa itu GoogleScriptGPT?

GoogleScriptGPT adalah ekstensi Chrome yang dikembangkan oleh Hassan Raza, dan fitur utamanya adalah "An Extension that uses AI to write and explain google apps script code for you.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi GoogleScriptGPT

Unduh file ekstensi GoogleScriptGPT dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama GoogleScriptGPT GoogleScriptGPT
ID aakmllddlcknkbcgjabmcgggfciofbgo
URL Resmi https://chromewebstore.google.com/detail/googlescriptgpt/aakmllddlcknkbcgjabmcgggfciofbgo
Deskripsi An Extension that uses AI to write and explain google apps script code for you.
Ukuran File 592 KB
Jumlah Instalasi 444
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2023-04-30
Tanggal Publikasi 2023-04-29
Penilaian 1.00/5 Total 1 Penilaian
Pengembang Hassan Raza
Email [email protected]
Tipe Pembayaran in_app
Situs Ekstensi https://googlescriptgpt.com/
URL Halaman Kebijakan Privasi https://www.freeprivacypolicy.com/live/89b48000-4100-46d4-a8cb-d17ca575a863
Bahasa yang Didukung 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"
    ]
}