MemoryGPT

A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!

O que é MemoryGPT?

MemoryGPT é uma extensão do Chrome desenvolvida por Wynter Jones, e sua principal característica é "A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão MemoryGPT

Baixe arquivos de extensão MemoryGPT no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome MemoryGPT MemoryGPT
ID aljiibffliajmjonffmhpbhcbnbcmbhl
URL Oficial https://chromewebstore.google.com/detail/memorygpt/aljiibffliajmjonffmhpbhcbnbcmbhl
Descrição A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!
Tamanho do Arquivo 823 KB
Contagem de Instalações 490
Versão Atual 1.0
Última Atualização 2023-06-09
Data de Publicação 2023-06-09
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Wynter Jones
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://www.monetizedesign.com/privacy-policy.html
Idiomas Suportados 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"
            ]
        }
    ]
}