Chatgpt assist

No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…

什么是Chatgpt assist?

Chatgpt assist是由Abu开发的Chrome扩展程序,该扩展的主要功能是“No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…”。

扩展截图

screenshot

下载Chatgpt assist扩展crx文件

下载Chatgpt assist扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing chat-gpt website in opening the replit editor where you can paste the code inside.

More to come:
- Export the conversation in single click.                    

扩展基本信息

名称 Chatgpt assist Chatgpt assist
ID fhdcoikaffdfehjpfkcaackmflcnjcom
官方URL https://chromewebstore.google.com/detail/chatgpt-assist/fhdcoikaffdfehjpfkcaackmflcnjcom
简介 No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…
文件大小 790 KB
安装次数 1,289
当前版本 0.0.4
更新时间 2023-02-05
上架时间 2022-12-07
评分 2.33/5 共3次评分
开发者 Abu
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://www.claritynotes.io/privacypolicy.html
支持的语言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.0.4",
    "short_name": "Chatgpt assist",
    "name": "Chatgpt assist",
    "action": [],
    "background": {
        "service_worker": "background.bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/chat*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "style.css",
                "modal.css"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.stackgpt.com\/*"
    ],
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}