ChatGPT Bookmark

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

Was ist ChatGPT Bookmark?

ChatGPT Bookmark ist eine Chrome-Erweiterung, die von https://sajan.dev entwickelt wurde, und ihr Hauptmerkmal ist "ChatGPT Bookmark is a simple extension that enables users to bookmark and easily access their conversations with ChatGPT".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

ChatGPT Bookmark-Erweiterungs-CRX-Datei herunterladen

Laden Sie ChatGPT Bookmark-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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"                    

Grundlegende Informationen zur Erweiterung

Name ChatGPT Bookmark ChatGPT Bookmark
ID mhlecapiniomlbllfaochicnafbjmmbg
Offizielle URL https://chromewebstore.google.com/detail/chatgpt-bookmark/mhlecapiniomlbllfaochicnafbjmmbg
Beschreibung ChatGPT Bookmark is a simple extension that enables users to bookmark and easily access their conversations with ChatGPT
Dateigröße 244 KB
Installationsanzahl 243
Aktuelle Version 1.0.5
Letztes Update 2023-12-04
Veröffentlichungsdatum 2023-03-19
Bewertung 2.33/5 Insgesamt 6 Bewertungen
Entwickler https://sajan.dev
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://sajan.dev
Hilfeseite URL https://sajan.dev
Unterstützte Sprachen 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"
    }
}