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!
扩展基本信息
名称 | Automagic: auto-reload script for ChatGPT |
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 |
电子邮箱 | [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" } } |