ChatGPT Bookmark

ChatGPT Bookmark is a simple extension that enables users to bookmark and easily access their conversations with ChatGPT

ChatGPT Bookmark là gì?

ChatGPT Bookmark là một tiện ích mở rộng Chrome được phát triển bởi https://sajan.dev, và tính năng chính của nó là "ChatGPT Bookmark is a simple extension that enables users to bookmark and easily access their conversations with ChatGPT".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ChatGPT Bookmark

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

                        About : The all new chatGPT Bookmark v1.0.5

1) Enhanced UI
2) Support for Folders and Tags
3) Improved bookmark management

Bug fix
1) Fixed the width issue with devices
2) Resolved a bug preventing the creation of folders and the addition of bookmarks.

ChatGPT Bookmark is a simple extension that enables users to bookmark and easily access their conversations with ChatGPT. This application is designed to make it easier for users to quickly bookmark specific conversations with ChatGPT and later access them by simply clicking on the links in the extension which opens the specific conversation in chatGPT and scrolls to the specific message which you bookmarked

in short this is like "Starred messages in Whatsapp"                    

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

Tên ChatGPT Bookmark ChatGPT Bookmark
ID mhlecapiniomlbllfaochicnafbjmmbg
URL Chính Thức https://chromewebstore.google.com/detail/chatgpt-bookmark/mhlecapiniomlbllfaochicnafbjmmbg
Mô tả ChatGPT Bookmark is a simple extension that enables users to bookmark and easily access their conversations with ChatGPT
Kích Thước Tệp 244 KB
Số Lần Cài Đặt 243
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2023-12-04
Ngày Phát Hành 2023-03-19
Đánh Giá 2.33/5 Tổng số 6 Đánh Giá
Nhà Phát Triển https://sajan.dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://sajan.dev
URL Trang Trợ Giúp https://sajan.dev
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Bookmark",
    "description": "ChatGPT Bookmark is a simple extension that enables users to bookmark and easily access their conversations with ChatGPT",
    "version": "1.0.5",
    "action": {
        "default_title": "ChatGPT Bookmark",
        "default_popup": "index.html",
        "default_icon": ".\/assets\/logo.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.openai.com\/*",
                "https:\/\/chat.openai.com\/*",
                "http:\/\/localhost:8080\/"
            ],
            "css": [
                "tailwind.css"
            ],
            "js": [
                "inject_test.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}