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."입니다.

확장 프로그램 스크린샷

screenshot

Automagic: auto-reload script for ChatGPT 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    }
}