WacGPT

WacGPT is a free browser extension that empowers you with the capabilities of AI. With a simple selection of text on web pages, it…

WacGPT란 무엇입니까?

WacGPT은(는) https://www.wacgpt.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "WacGPT is a free browser extension that empowers you with the capabilities of AI. With a simple selection of text on web pages, it…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

WacGPT 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        WacGPT is a free browser extension that empowers you with the capabilities of AI. With a simple selection of text on web pages, it provides you with services like concept explanations, content summarization, high-quality translations, AI-based Q&A, and more. By relieving you of repetitive and mundane tasks, it unleashes your creativity, You only need to configure the OpenAI API KEY to use it.

--------- Update Log ------------
V1.0.1: Compatible with the Notion WEB Version
V1.0.2: Fixed some websites not being able to ctrl+c copy results                    

확장 프로그램 기본 정보

이름 WacGPT WacGPT
ID ofgghdophhoggnlkgiigooldjblbmkid
공식 URL https://chromewebstore.google.com/detail/wacgpt/ofgghdophhoggnlkgiigooldjblbmkid
설명 WacGPT is a free browser extension that empowers you with the capabilities of AI. With a simple selection of text on web pages, it…
파일 크기 167 KB
설치 횟수 72
현재 버전 1.0.3.1
최근 업데이트 2023-09-12
출시 날짜 2023-05-20
개발자 https://www.wacgpt.com
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://www.wacgpt.com/
개인정보 보호 정책 페이지 URL https://www.wacgpt.com/privacy.html
지원되는 언어 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_AppName__",
    "description": "__MSG_AppDesc__",
    "version": "1.0.3.1",
    "manifest_version": 3,
    "default_locale": "zh_CN",
    "permissions": [
        "cookies",
        "background",
        "storage",
        "webNavigation",
        ""
    ],
    "action": {
        "default_popup": ".\/popup\/popup.html",
        "default_icon": ".\/icons\/logo.png",
        "content_security_policy": "script-src 'self' 'sha256-abc123'; object-src 'self'"
    },
    "icons": {
        "500": ".\/icons\/logo.png"
    },
    "background": {
        "service_worker": "service_worker.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                ".\/content_scripts\/wac.js"
            ],
            "css": [
                ".\/css\/v2.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "css\/*",
                "icons\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "options_page": ".\/options\/options.html",
    "host_permissions": [
        ""
    ]
}