ChatGPT History Manager

Search your ChatGPT conversation history

ChatGPT History Managerคืออะไร?

ChatGPT History Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย williamsun1993 และคุณลักษณะหลักของมันคือ "Search your ChatGPT conversation history"

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

screenshot
screenshot
screenshot

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

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

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

                        ChatGPT History Manager

🎉 Introduction of main features of the plugin:
1. Non-invasive ChatGPT conversation management, which not only supports modifications and deletions, but also conversation grouping and pinning.
2. Full-text search and keyword positioning in conversations. The plugin not only searches titles but also details of conversations, and after opening the details, it can locate the position of the keyword.
3. Only needs to be imported once (to ensure that you truly want to use it, otherwise it would automatically import), and later conversations will be automatically synced.

🎉 The initial intention of plugin development:
When using GPT, I often design prompts in different fields, or for different work scenarios.
1. The original list can only be sorted by time, I need a folder function to distinguish my different conversations.
2. I often use some conversations, I would find it and go in, my usual practice is to add a ❤️ in the title, but it's easy to get lost when the history gets too long, so I added a pinning function, and of course, you can drag and sort to adjust the position.
3. The title of GPT is automatically generated, and I need to query some of my past conversation history, currently, only the mobile version can query, so I added full-text search, which can search titles, conversation content, and after clicking into the details, it can locate the position of the keyword, and support key and shortcut key to switch up and down coordinates.
4. Non-invasive, some competitors directly change the conversation list, which looks messy.
5. I have never written a Chrome plugin, I am a bit rusty on the front-end, just try out Github Copilot and ChatGPT's coding ability, this plugin is basically I propose the demand or write good notes, the rest is completed by AI, the test result shows that programmers can boldly work in unfamiliar areas, just look at the code part, about 90% is completed by AI.

Hope you enjoy the plugin, and we appreciate your feedback and support as we continue to improve and update in the future versions!

🎉 Release Notes:
🔗 v1.0.1
Release Date: August 16, 2023

Bug Fixes
1. Search Menu Loading: Fixed the logic issue and delay problem in the detail page that could cause the search menu not to display.
2. Full Text Search: The number of matching items displayed in full text search may be inconsistent with the number of matching items seen on the details page. This is because we have edited conversations and created new nodes. After fixing, conversations are only searched through the current_node. Your old data may not adapt to the new rules and may still display too many matching items. If this bothers you, please re-import the data."

🔗 v1.0.0
Release Date: July 28, 2023
The initial release of the new plugin.                    

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

ชื่อ ChatGPT History Manager ChatGPT History Manager
ID eaahblnmdpkfokgcelfnnkkkgpfiodhf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chatgpt-history-manager/eaahblnmdpkfokgcelfnnkkkgpfiodhf
คำอธิบาย Search your ChatGPT conversation history
ขนาดไฟล์ 2.34 MB
จำนวนการติดตั้ง 97
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2023-08-18
วันที่เผยแพร่ 2023-07-26
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา williamsun1993
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://github.com/williamsun1993/ChatGPT-History-Manager/blob/main/Privacy-Policy.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "version": "1.0.1",
    "description": "Search your ChatGPT conversation history",
    "default_locale": "en",
    "permissions": [
        "storage",
        "tabs",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/chat.openai.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/c\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icons\/16.png",
        "48": "images\/icons\/48.png",
        "128": "images\/icons\/128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "assets\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "images\/icons\/16.png",
            "48": "images\/icons\/48.png",
            "128": "images\/icons\/128.png"
        },
        "default_popup": "index.html"
    }
}