CountGPT
Adds a counter to the ChatGPT site to keep track of how many messages have been sent
ما هو CountGPT؟
CountGPT هو إضافة Chrome تم تطويرها بواسطة https://redplanetrecords.co.uk، والميزة الرئيسية لها هي "Adds a counter to the ChatGPT site to keep track of how many messages have been sent".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة CountGPT
قم بتنزيل ملفات الامتداد CountGPT بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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": [ " |