Save ChatGPT Transcript

Save ChatGPT transcript as an HTML file with user/AI highlighting. Choose your own filename.

Save ChatGPT Transcript là gì?

Save ChatGPT Transcript là một tiện ích mở rộng Chrome được phát triển bởi H2W Ventures, và tính năng chính của nó là "Save ChatGPT transcript as an HTML file with user/AI highlighting. Choose your own filename.".

Ả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 Save ChatGPT Transcript

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

                        Easy one-click save ChatGPT transcript as a local HTML file with user/AI highlighting. Choose your own filename. No data saved remotely, privacy ensured.                    

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

Tên Save ChatGPT Transcript Save ChatGPT Transcript
ID hkclgbgcgdmlopmnbakdclgpdnklabcd
URL Chính Thức https://chromewebstore.google.com/detail/save-chatgpt-transcript/hkclgbgcgdmlopmnbakdclgpdnklabcd
Mô tả Save ChatGPT transcript as an HTML file with user/AI highlighting. Choose your own filename.
Kích Thước Tệp 8.23 KB
Số Lần Cài Đặt 263
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2023-03-17
Ngày Phát Hành 2023-02-20
Đánh Giá 4.17/5 Tổng số 6 Đánh Giá
Nhà Phát Triển H2W Ventures
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save ChatGPT Transcript",
    "version": "1.1",
    "description": "Save ChatGPT transcript as an HTML file with user\/AI highlighting. Choose your own filename.",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_title": "Save ChatGPT Transcript"
    },
    "background": {
        "service_worker": "popup.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "popup.js"
            ]
        }
    ],
    "icons": {
        "128": "icon-128x128.png"
    }
}