ChatGPT Bookmark

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

Τι είναι το ChatGPT Bookmark;

Το ChatGPT Bookmark είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://sajan.dev, και η κύρια λειτουργία του είναι "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

Λήψη αρχείου CRX της επέκτασης ChatGPT Bookmark

Λήψη αρχείων επέκτασης 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"
    }
}