Automagic: auto-reload script for ChatGPT

Automagic is an auto-reloader for ChatGPT that auto-reloads ChatGPT whenever it is at capacity.

Qu'est-ce que Automagic: auto-reload script for ChatGPT ?

Automagic: auto-reload script for ChatGPT est une extension Chrome développée par EVOLV, et sa fonction principale est "Automagic is an auto-reloader for ChatGPT that auto-reloads ChatGPT whenever it is at capacity.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Automagic: auto-reload script for ChatGPT

Téléchargez les fichiers d'extension Automagic: auto-reload script for ChatGPT au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Automagic: auto-reload script for ChatGPT Automagic: auto-reload script for ChatGPT
ID kpffgnpjncfggijjacclbamhcpebfmco
URL Officiel https://chromewebstore.google.com/detail/automagic-auto-reload-scr/kpffgnpjncfggijjacclbamhcpebfmco
Description Automagic is an auto-reloader for ChatGPT that auto-reloads ChatGPT whenever it is at capacity.
Taille du Fichier 149 KB
Nombre d'Installations 39
Version Actuelle 1.1
Dernière Mise à Jour 2023-04-05
Date de Publication 2023-02-18
Développeur EVOLV
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://goevolv.io?privacy_policy=true
Langues Prises en Charge 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"
    }
}