CountGPT
Adds a counter to the ChatGPT site to keep track of how many messages have been sent
CountGPT क्या है?
CountGPT https://redplanetrecords.co.uk द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a counter to the ChatGPT site to keep track of how many messages have been sent"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में CountGPT एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | CountGPT |
ID | ikedfcphlfopekpnneleglilcfnamjgl |
आधिकारिक URL | https://chromewebstore.google.com/detail/countgpt/ikedfcphlfopekpnneleglilcfnamjgl |
विवरण | Adds a counter to the ChatGPT site to keep track of how many messages have been sent |
फ़ाइल का आकार | 25.93 KB |
स्थापना संख्या | 125 |
वर्तमान संस्करण | 0.2.0 |
अंतिम अपडेट | 2023-05-26 |
प्रकाशन तिथि | 2023-05-02 |
रेटिंग | 4.67/5 कुल 3 रेटिंग्स |
डेवलपर | https://redplanetrecords.co.uk |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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": [ " |