MemoryGPT
A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!
什么是MemoryGPT?
MemoryGPT是由Wynter Jones开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!”。
扩展截图
下载MemoryGPT扩展crx文件
下载MemoryGPT扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Count the tokens in your ChatGPT conversations. Super helpful to always stay within the 4096 token window. Or if you go past that context window... you can toggle on or off the ability to show what was "forgotten" so you don't have to guess!
扩展基本信息
名称 | MemoryGPT |
ID | aljiibffliajmjonffmhpbhcbnbcmbhl |
官方URL | https://chromewebstore.google.com/detail/memorygpt/aljiibffliajmjonffmhpbhcbnbcmbhl |
简介 | A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more! |
文件大小 | 823 KB |
安装次数 | 490 |
当前版本 | 1.0 |
更新时间 | 2023-06-09 |
上架时间 | 2023-06-09 |
评分 | 5.00/5 共1次评分 |
开发者 | Wynter Jones |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://www.monetizedesign.com/privacy-policy.html |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "MemoryGPT", "description": "A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!", "version": "1.0", "homepage_url": "https:\/\/wynter.ai", "action": { "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "tokenizer.js", "content.js" ], "css": [ "styles.css" ] } ] } |