GoogleScriptGPT

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

GoogleScriptGPTคืออะไร?

GoogleScriptGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Hassan Raza และคุณลักษณะหลักของมันคือ "An Extension that uses AI to write and explain google apps script code for you."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GoogleScriptGPT

ดาวน์โหลดไฟล์ส่วนขยาย GoogleScriptGPT ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ GoogleScriptGPT GoogleScriptGPT
ID aakmllddlcknkbcgjabmcgggfciofbgo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/googlescriptgpt/aakmllddlcknkbcgjabmcgggfciofbgo
คำอธิบาย An Extension that uses AI to write and explain google apps script code for you.
ขนาดไฟล์ 592 KB
จำนวนการติดตั้ง 444
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2023-04-30
วันที่เผยแพร่ 2023-04-29
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Hassan Raza
อีเมล [email protected]
ประเภทการชำระเงิน in_app
เว็บไซต์ส่วนขยาย https://googlescriptgpt.com/
URL หน้านโยบายความเป็นส่วนตัว https://www.freeprivacypolicy.com/live/89b48000-4100-46d4-a8cb-d17ca575a863
ภาษาที่รองรับ 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"
    ]
}