Chat Saver

A browser extension that allows you to save the current chat history of ChatGPT to your local device.

Chat Saver란 무엇입니까?

Chat Saver은(는) Taipa Xu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A browser extension that allows you to save the current chat history of ChatGPT to your local device."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Chat Saver 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        A browser extension that allows you to save the current chat history of ChatGPT to your local device.                    

확장 프로그램 기본 정보

이름 Chat Saver Chat Saver
ID gbccnnpigcfcheaeicpldgmjjojjmldb
공식 URL https://chromewebstore.google.com/detail/chat-saver/gbccnnpigcfcheaeicpldgmjjojjmldb
설명 A browser extension that allows you to save the current chat history of ChatGPT to your local device.
파일 크기 37.18 KB
설치 횟수 47
현재 버전 0.2.1
최근 업데이트 2023-05-08
출시 날짜 2023-03-09
개발자 Taipa Xu
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/TaipaXu/chat-saver
도움말 페이지 URL https://github.com/TaipaXu/chat-saver
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Chat Saver",
    "version": "0.2.1",
    "description": "A browser extension that allows you to save the current chat history of ChatGPT to your local device.",
    "icons": {
        "16": ".\/assets\/icon.png",
        "48": ".\/assets\/icon.png",
        "128": ".\/assets\/icon.png"
    },
    "action": {
        "default_icon": {
            "16": ".\/assets\/icon.png",
            "24": ".\/assets\/icon.png",
            "32": ".\/assets\/icon.png"
        },
        "default_title": "chat saver",
        "default_popup": "popup.html"
    },
    "background": {
        "type": "module",
        "service_worker": "service.js"
    },
    "permissions": [
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/chat.openai.com\/"
    ]
}