CountGPT

Adds a counter to the ChatGPT site to keep track of how many messages have been sent

O que é CountGPT?

CountGPT é uma extensão do Chrome desenvolvida por https://redplanetrecords.co.uk, e sua principal característica é "Adds a counter to the ChatGPT site to keep track of how many messages have been sent".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão CountGPT

Baixe arquivos de extensão CountGPT 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

                        This extension adds a very simple counter to the ChatGPT conversation page, allowing you to see how many messages have been sent. This is especially useful for dealing with the 25 message cap of GPT4. Counter auto increments when a new message is sent, users can select which GPT models they want to enable the counter on.                    

Informações Básicas da Extensão

Nome CountGPT CountGPT
ID ikedfcphlfopekpnneleglilcfnamjgl
URL Oficial https://chromewebstore.google.com/detail/countgpt/ikedfcphlfopekpnneleglilcfnamjgl
Descrição Adds a counter to the ChatGPT site to keep track of how many messages have been sent
Tamanho do Arquivo 25.93 KB
Contagem de Instalações 125
Versão Atual 0.2.0
Última Atualização 2023-05-26
Data de Publicação 2023-05-02
Classificação 4.67/5 Total de 3 Avaliações
Desenvolvedor https://redplanetrecords.co.uk
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CountGPT",
    "version": "0.2.0",
    "description": "Adds a counter to the ChatGPT site to keep track of how many messages have been sent",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/scripts\/popup.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}