ChatGPT Auto Refresh
The Chrome app would refresh the OpenAI GPT-3 chat website whenever an error occurs on the page. The app would monitor the page for…
ChatGPT Auto Refreshとは何ですか?
ChatGPT Auto RefreshはJayeonsoftによって開発されたChromeの拡張機能で、その主な機能は「The Chrome app would refresh the OpenAI GPT-3 chat website whenever an error occurs on the page. The app would monitor the page for…」です。
拡張機能のスクリーンショット
ChatGPT Auto Refresh拡張機能のCRXファイルをダウンロード
ChatGPT Auto Refresh拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The Chrome app would refresh the OpenAI GPT-3 chat website whenever an error occurs on the page. The app would monitor the page for any error messages or signs of failure, and automatically refresh the page if it detects an issue. This app would be particularly useful for users who frequently use the OpenAI GPT-3 chat website, and want to ensure that the page is always functioning properly without having to manually refresh the page in the event of an error. With this app installed, users can continue their conversation with the GPT-3 chatbot without interruption, as the app will handle refreshing the page in the background whenever an error occurs.
拡張機能の基本情報
名前 | ChatGPT Auto Refresh |
ID | aigpphcebcckejhodhpogldjhfedoegj |
公式URL | https://chromewebstore.google.com/detail/chatgpt-auto-refresh/aigpphcebcckejhodhpogldjhfedoegj |
説明 | The Chrome app would refresh the OpenAI GPT-3 chat website whenever an error occurs on the page. The app would monitor the page for… |
ファイルサイズ | 2.12 MB |
インストール数 | 1,140 |
現在のバージョン | 1.1.0.3 |
最終更新日 | 2023-03-07 |
公開日 | 2023-02-03 |
評価 | 5.00/5 合計 4 レビュー |
開発者 | Jayeonsoft |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ChatGPT Auto Refresh", "version": "1.1.0.3", "manifest_version": 3, "permissions": [ "tabs", "activeTab", "webRequest", "scripting", "storage" ], "icons": { "128": "icon128.png" }, "host_permissions": [ "https:\/\/chat.openai.com\/*" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "index.html" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/chat*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ] } |