Automagic: auto-reload script for ChatGPT
Automagic is an auto-reloader for ChatGPT that auto-reloads ChatGPT whenever it is at capacity.
Automagic: auto-reload script for ChatGPTとは何ですか?
Automagic: auto-reload script for ChatGPTはEVOLVによって開発されたChromeの拡張機能で、その主な機能は「Automagic is an auto-reloader for ChatGPT that auto-reloads ChatGPT whenever it is at capacity.」です。
拡張機能のスクリーンショット
Automagic: auto-reload script for ChatGPT拡張機能のCRXファイルをダウンロード
Automagic: auto-reload script for ChatGPT拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Automagic is an auto-reload & auto-refresh utility for ChatGPT, that does the magic whenever ChatGPT is at it's maximum capacity. It effectively leverages a tiny but useful automation script to repeatedly auto-refresh the page multiple times- until the at-capacity issue is gone & ChatGPT is ready to rock again- hence helping you save good amount of mundane & manual effort! 拡張機能の基本情報
| 名前 | |
| ID | kpffgnpjncfggijjacclbamhcpebfmco |
| 公式URL | https://chromewebstore.google.com/detail/automagic-auto-reload-scr/kpffgnpjncfggijjacclbamhcpebfmco |
| 説明 | Automagic is an auto-reloader for ChatGPT that auto-reloads ChatGPT whenever it is at capacity. |
| ファイルサイズ | 149 KB |
| インストール数 | 39 |
| 現在のバージョン | 1.1 |
| 最終更新日 | 2023-04-05 |
| 公開日 | 2023-02-18 |
| 開発者 | EVOLV |
| Eメール | [email protected] |
| 支払い方法 | free |
| プライバシーポリシーページのURL | https://goevolv.io?privacy_policy=true |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Automagic: auto-reload script for ChatGPT",
"short_name": "Automagic auto-reload",
"version": "1.1",
"description": "Automagic is an auto-reloader for ChatGPT that auto-reloads ChatGPT whenever it is at capacity.",
"icons": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"permissions": [
"background"
],
"content_scripts": [
{
"matches": [
"https:\/\/chat.openai.com\/auth\/login\/*"
],
"js": [
"content.js"
]
}
],
"background": {
"service_worker": "bk.js"
},
"web_accessible_resources": [
{
"resources": [
"*.js",
"*.html",
"*.css",
"*.png",
"*.svg",
"*.jpg",
"*.jpeg",
".mp3"
],
"matches": [
"*:\/\/*\/*"
],
"all_frames": true
}
],
"offline_enabled": true,
"author": "Automagic",
"content_security_policy": {
"extension_pages": "font-src 'self'; script-src 'self'; object-src 'self'; worker-src 'self'",
"content_scripts": "font-src 'self'; script-src 'self'; object-src 'self'; worker-src 'self'"
},
"action": {
"default_icon": "icon.png",
"default_title": "Automagic: auto-reloader for ChatGPT"
}
} | |