ChatGPT Bookmark
Effortlessly manage bookmarks while using ChatGPT! Save important conversations, questions, or ideas with ease.
什么是ChatGPT Bookmark?
ChatGPT Bookmark是由Harsh Poddar开发的Chrome扩展程序,该扩展的主要功能是“Effortlessly manage bookmarks while using ChatGPT! Save important conversations, questions, or ideas with ease.”。
扩展截图
下载ChatGPT Bookmark扩展crx文件
下载ChatGPT Bookmark扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
ChatGPT Bookmark is the ultimate companion for organizing your thoughts and important moments while using ChatGPT. With this powerful extension, effortlessly save and manage bookmarks within the ChatGPT interface, ensuring you never lose track of valuable conversations, brilliant ideas, or crucial information again. Seamlessly capture and categorize bookmarks, making it a breeze to revisit and reference them at any time. Enhance your productivity and streamline your workflow with ChatGPT Bookmark – the essential tool for maximizing your ChatGPT experience.
扩展基本信息
名称 | ChatGPT Bookmark |
ID | poichbelkghcmmplabhcgjfomcjgfopn |
官方URL | https://chromewebstore.google.com/detail/chatgpt-bookmark/poichbelkghcmmplabhcgjfomcjgfopn |
简介 | Effortlessly manage bookmarks while using ChatGPT! Save important conversations, questions, or ideas with ease. |
文件大小 | 486 KB |
安装次数 | 41 |
当前版本 | 1.3 |
更新时间 | 2024-02-01 |
上架时间 | 2023-06-21 |
评分 | 4.38/5 共13次评分 |
开发者 | Harsh Poddar |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Bookmark", "version": "1.3", "description": "Effortlessly manage bookmarks while using ChatGPT! Save important conversations, questions, or ideas with ease.", "permissions": [ "storage", "scripting" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon.png" } }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "accordion.js", "insert_bookmark.js", "content.js" ] } ], "host_permissions": [ "https:\/\/chat.openai.com\/*" ] } |