GoogleScriptGPT

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

GoogleScriptGPTとは何ですか?

GoogleScriptGPTはHassan Razaによって開発されたChromeの拡張機能で、その主な機能は「An Extension that uses AI to write and explain google apps script code for you.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

GoogleScriptGPT拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    ]
}