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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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"
    }
}