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 là gì?
Automagic: auto-reload script for ChatGPT là một tiện ích mở rộng Chrome được phát triển bởi EVOLV, và tính năng chính của nó là "Automagic is an auto-reloader for ChatGPT that auto-reloads ChatGPT whenever it is at capacity.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Automagic: auto-reload script for ChatGPT
Tải xuống các tệp mở rộng Automagic: auto-reload script for ChatGPT dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Automagic: auto-reload script for ChatGPT |
ID | kpffgnpjncfggijjacclbamhcpebfmco |
URL Chính Thức | https://chromewebstore.google.com/detail/automagic-auto-reload-scr/kpffgnpjncfggijjacclbamhcpebfmco |
Mô tả | Automagic is an auto-reloader for ChatGPT that auto-reloads ChatGPT whenever it is at capacity. |
Kích Thước Tệp | 149 KB |
Số Lần Cài Đặt | 39 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2023-04-05 |
Ngày Phát Hành | 2023-02-18 |
Nhà Phát Triển | EVOLV |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://goevolv.io?privacy_policy=true |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |