ChatGPT Bookmark

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

什么是ChatGPT Bookmark?

ChatGPT Bookmark是由https://sajan.dev开发的Chrome扩展程序,该扩展的主要功能是“ChatGPT Bookmark is a simple extension that enables users to bookmark and easily access their conversations with ChatGPT”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

下载ChatGPT Bookmark扩展crx文件

下载ChatGPT Bookmark扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"                    

扩展基本信息

名称 ChatGPT Bookmark ChatGPT Bookmark
ID mhlecapiniomlbllfaochicnafbjmmbg
官方URL https://chromewebstore.google.com/detail/chatgpt-bookmark/mhlecapiniomlbllfaochicnafbjmmbg
简介 ChatGPT Bookmark is a simple extension that enables users to bookmark and easily access their conversations with ChatGPT
文件大小 244 KB
安装次数 243
当前版本 1.0.5
更新时间 2023-12-04
上架时间 2023-03-19
评分 2.33/5 共6次评分
开发者 https://sajan.dev
电子邮箱 [email protected]
付费类型 free
扩展官网 https://sajan.dev
帮助页面URL https://sajan.dev
支持的语言 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"
    }
}