ChatGPT Bookmarks
A chrome extension for managing chatgpt conversations.
Τι είναι το ChatGPT Bookmarks;
Το ChatGPT Bookmarks είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον seekinglight233, και η κύρια λειτουργία του είναι "A chrome extension for managing chatgpt conversations.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης ChatGPT Bookmarks
Λήψη αρχείων επέκτασης ChatGPT Bookmarks σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
If you encounter any issues with the usage, feel free to raise an issue on GitHub: https://github.com/SeekingLight233/chatgpt-bookmarks/issues 0.0.7 update: fix sync to notion error. 🚀Features - Save each conversation as a bookmark. - Sync conversation content to Notion. 📖Usage Sync to notion config 1. Click here to create a Notion API key: [Notion Integrations](https://www.notion.so/my-integrations) 2. After creating, in the Notion page, click on the `...` on the right side, select `Add Connections`, and find the Notion integration you just created. 3. In Chrome, right-click on the ChatGPT-Bookmarks extension icon, click on `Options` to enter the configuration page. 4. On the configuration page, fill in the Notion API key and Notion page id. ⚠️: Notion page id is a string of characters in the URL of the Notion page. For example, `https://www.notion.so/ChatGPT-Bookmarks-0e1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6`, the Notion page id is `0e1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6`.
Βασικές Πληροφορίες Επέκτασης
Όνομα | ChatGPT Bookmarks |
ID | hagmmpbaflccbibjhbcnolbligcdildb |
Επίσημο URL | https://chromewebstore.google.com/detail/chatgpt-bookmarks/hagmmpbaflccbibjhbcnolbligcdildb |
Περιγραφή | A chrome extension for managing chatgpt conversations. |
Μέγεθος Αρχείου | 439 KB |
Αριθμός Εγκαταστάσεων | 41 |
Τρέχουσα Έκδοση | 0.0.7 |
Τελευταία Ενημέρωση | 2024-01-12 |
Ημερομηνία Δημοσίευσης | 2023-06-27 |
Αξιολόγηση | 3.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | seekinglight233 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/SeekingLight233/chatgpt-bookmarks |
URL της Σελίδας Πολιτικής Απορρήτου | https://www.termsfeed.com/live/e8fdf3e8-4313-47b9-8048-d768ba671e60 |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "icons": { "16": "icon16.plasmo.6c567d50.png", "32": "icon32.plasmo.76b92899.png", "48": "icon48.plasmo.aced7582.png", "64": "icon64.plasmo.8bb5e6e0.png", "128": "icon128.plasmo.3c1ed2d2.png" }, "manifest_version": 3, "action": { "default_icon": { "16": "icon16.plasmo.6c567d50.png", "32": "icon32.plasmo.76b92899.png", "48": "icon48.plasmo.aced7582.png", "64": "icon64.plasmo.8bb5e6e0.png", "128": "icon128.plasmo.3c1ed2d2.png" }, "default_popup": "popup.html" }, "version": "0.0.7", "author": "SeekingLight", "name": "ChatGPT Bookmarks", "description": "A chrome extension for managing chatgpt conversations.", "background": { "service_worker": "static\/background\/index.js" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "permissions": [ "storage", "tabs", "clipboardRead" ], "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "edit-bookmark-modal.919d1165.js" ], "css": [ "edit-bookmark-modal.a31b8066.css" ] }, { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "bookmark.dc58d01f.js" ], "css": [ "edit-bookmark-modal.a31b8066.css" ] }, { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "toast.136b8215.js" ], "css": [] }, { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "sidebar.524fe15c.js" ], "css": [ "edit-bookmark-modal.a31b8066.css" ] } ], "host_permissions": [ "https:\/\/api.notion.com\/*" ], "web_accessible_resources": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "resources": [ "sidebar.6aa0df4b.css" ] } ] } |