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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automagic is an auto-reloader for ChatGPT that auto-reloads ChatGPT whenever it is at capacity."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Automagic: auto-reload script for ChatGPT एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |