ChatGPT Bookmark

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

Qu'est-ce que ChatGPT Bookmark ?

ChatGPT Bookmark est une extension Chrome développée par https://sajan.dev, et sa fonction principale est "ChatGPT Bookmark is a simple extension that enables users to bookmark and easily access their conversations with ChatGPT".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension ChatGPT Bookmark

Téléchargez les fichiers d'extension ChatGPT Bookmark au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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"                    

Informations de Base sur l'Extension

Nom ChatGPT Bookmark ChatGPT Bookmark
ID mhlecapiniomlbllfaochicnafbjmmbg
URL Officiel https://chromewebstore.google.com/detail/chatgpt-bookmark/mhlecapiniomlbllfaochicnafbjmmbg
Description ChatGPT Bookmark is a simple extension that enables users to bookmark and easily access their conversations with ChatGPT
Taille du Fichier 244 KB
Nombre d'Installations 243
Version Actuelle 1.0.5
Dernière Mise à Jour 2023-12-04
Date de Publication 2023-03-19
Évaluation 2.33/5 Total 6 Évaluations
Développeur https://sajan.dev
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://sajan.dev
URL de la Page d'Aide https://sajan.dev
Langues Prises en Charge 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"
    }
}