CountGPT
Adds a counter to the ChatGPT site to keep track of how many messages have been sent
CountGPTとは何ですか?
CountGPTはhttps://redplanetrecords.co.ukによって開発されたChromeの拡張機能で、その主な機能は「Adds a counter to the ChatGPT site to keep track of how many messages have been sent」です。
拡張機能のスクリーンショット
CountGPT拡張機能のCRXファイルをダウンロード
CountGPT拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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": [ " |