ChatGPT Extension

This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.

ChatGPT Extension là gì?

ChatGPT Extension là một tiện ích mở rộng Chrome được phát triển bởi Oliver N., và tính năng chính của nó là "This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.".

Ả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 Extension

Tải xuống các tệp mở rộng ChatGPT Extension 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 loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session. Simply click the extension icon in your browser toolbar to activate ChatGPT. ChatGPT is a powerful language model that uses deep learning to produce human-like responses to text input.                    

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

Tên ChatGPT Extension ChatGPT Extension
ID ehigecokdaejpecogfefhmoemlapfjko
URL Chính Thức https://chromewebstore.google.com/detail/chatgpt-extension/ehigecokdaejpecogfefhmoemlapfjko
Mô tả This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.
Kích Thước Tệp 281 KB
Số Lần Cài Đặt 716
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2022-12-21
Ngày Phát Hành 2022-12-21
Đánh Giá 1.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Oliver N.
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/iOliverNguyen/chatgpt-box-extension
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": [],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "css": [
                "content_script.css"
            ],
            "js": [
                "content_script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.",
    "host_permissions": [
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "96": "icon96.png",
        "128": "icon128.png",
        "512": "icon512.png"
    },
    "manifest_version": 3,
    "name": "ChatGPT Extension",
    "version": "0.1.0",
    "web_accessible_resources": [
        {
            "extension_ids": [],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "resources": [
                "assets\/*"
            ]
        }
    ]
}