GoogleScriptGPT

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

GoogleScriptGPT là gì?

GoogleScriptGPT là một tiện ích mở rộng Chrome được phát triển bởi Hassan Raza, và tính năng chính của nó là "An Extension that uses AI to write and explain google apps script code for you.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng GoogleScriptGPT

Tải xuống các tệp mở rộng GoogleScriptGPT dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GoogleScriptGPT GoogleScriptGPT
ID aakmllddlcknkbcgjabmcgggfciofbgo
URL Chính Thức https://chromewebstore.google.com/detail/googlescriptgpt/aakmllddlcknkbcgjabmcgggfciofbgo
Mô tả An Extension that uses AI to write and explain google apps script code for you.
Kích Thước Tệp 592 KB
Số Lần Cài Đặt 444
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2023-04-30
Ngày Phát Hành 2023-04-29
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Hassan Raza
Email [email protected]
Loại Thanh Toán in_app
Trang Web Mở Rộng https://googlescriptgpt.com/
URL Trang Chính Sách Bảo Mật https://www.freeprivacypolicy.com/live/89b48000-4100-46d4-a8cb-d17ca575a863
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}