SaveGPT

Save your ChatGPT conversations

SaveGPTคืออะไร?

SaveGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Piyush Santwani และคุณลักษณะหลักของมันคือ "Save your ChatGPT conversations"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SaveGPT

ดาวน์โหลดไฟล์ส่วนขยาย SaveGPT ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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/                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ SaveGPT SaveGPT
ID openekjijmgjlhodnlbofmbmhhcogdli
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/savegpt/openekjijmgjlhodnlbofmbmhhcogdli
คำอธิบาย Save your ChatGPT conversations
ขนาดไฟล์ 40.26 KB
จำนวนการติดตั้ง 8,398
เวอร์ชันปัจจุบัน 1.0.30
อัปเดตครั้งล่าสุด 2023-04-16
วันที่เผยแพร่ 2022-12-10
คะแนน 2.88/5 รวมทั้งหมด 34 คะแนน
ผู้พัฒนา Piyush Santwani
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://savegpt.com/
URL หน้านโยบายความเป็นส่วนตัว https://savegpt.com/privacy_policy
ภาษาที่รองรับ 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\/*"
            ]
        }
    ]
}