SaveGPT

Save your ChatGPT conversations

SaveGPT là gì?

SaveGPT là một tiện ích mở rộng Chrome được phát triển bởi Piyush Santwani, và tính năng chính của nó là "Save your ChatGPT conversations".

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

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

                        It's a browser extension that auto-saves your ChatGPT conversations and adds a "Chat History" button within the ChatGPT website. This is an indepedent project and is not affiliated with OpenAI or ChatGPT.
Website -  - https://savegpt.com/                    

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

Tên SaveGPT SaveGPT
ID openekjijmgjlhodnlbofmbmhhcogdli
URL Chính Thức https://chromewebstore.google.com/detail/savegpt/openekjijmgjlhodnlbofmbmhhcogdli
Mô tả Save your ChatGPT conversations
Kích Thước Tệp 40.26 KB
Số Lần Cài Đặt 8,398
Phiên Bản Hiện Tại 1.0.30
Cập Nhật Lần Cuối 2023-04-16
Ngày Phát Hành 2022-12-10
Đánh Giá 2.88/5 Tổng số 34 Đánh Giá
Nhà Phát Triển Piyush Santwani
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://savegpt.com/
URL Trang Chính Sách Bảo Mật https://savegpt.com/privacy_policy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SaveGPT",
    "description": "Save your ChatGPT conversations",
    "icons": {
        "128": "icons\/history.png",
        "16": "icons\/history.png",
        "32": "icons\/history.png",
        "48": "icons\/history.png"
    },
    "manifest_version": 3,
    "version": "1.0.30",
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "permissions": [
        "storage",
        "webRequest",
        "activeTab",
        "unlimitedStorage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "tooltip.js",
                "utils.js",
                "index.js"
            ],
            "css": [
                "index.css"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "utils.js",
                "twitter.js"
            ],
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*",
                "download.css"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ]
}