CountGPT
Adds a counter to the ChatGPT site to keep track of how many messages have been sent
Cos'è CountGPT?
CountGPT è un'estensione di Chrome sviluppata da https://redplanetrecords.co.uk, e la sua funzione principale è "Adds a counter to the ChatGPT site to keep track of how many messages have been sent".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione CountGPT
Scarica i file di estensione CountGPT in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | CountGPT |
ID | ikedfcphlfopekpnneleglilcfnamjgl |
URL Ufficiale | https://chromewebstore.google.com/detail/countgpt/ikedfcphlfopekpnneleglilcfnamjgl |
Descrizione | Adds a counter to the ChatGPT site to keep track of how many messages have been sent |
Dimensione del File | 25.93 KB |
Conteggio Installazioni | 125 |
Versione Corrente | 0.2.0 |
Ultimo Aggiornamento | 2023-05-26 |
Data di Pubblicazione | 2023-05-02 |
Valutazione | 4.67/5 Totale 3 Valutazioni |
Sviluppatore | https://redplanetrecords.co.uk |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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": [ " |