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 là gì?

Chatgpt assist là một tiện ích mở rộng Chrome được phát triển bởi Abu, và tính năng chính của nó là "No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…".

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

screenshot

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

Tải xuống các tệp mở rộng Chatgpt assist 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

                        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.                    

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

Tên Chatgpt assist Chatgpt assist
ID fhdcoikaffdfehjpfkcaackmflcnjcom
URL Chính Thức https://chromewebstore.google.com/detail/chatgpt-assist/fhdcoikaffdfehjpfkcaackmflcnjcom
Mô tả No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…
Kích Thước Tệp 790 KB
Số Lần Cài Đặt 1,289
Phiên Bản Hiện Tại 0.0.4
Cập Nhật Lần Cuối 2023-02-05
Ngày Phát Hành 2022-12-07
Đánh Giá 2.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Abu
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.claritynotes.io/privacypolicy.html
Ngôn Ngữ Được Hỗ Trợ 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'"
    }
}