GPT SidePanel

Providing the best GPT extension experience, empowering your productivity with your own prompts

GPT SidePanel란 무엇입니까?

GPT SidePanel은(는) https://gptsidepanel.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Providing the best GPT extension experience, empowering your productivity with your own prompts"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Powerful plugin that reside in your browser's sidepanel. Answers questions, analysis product, summarize articles, polish emails... You can do anything within one click. 

🥳Quick Start
1️⃣ Press Alt+G or Option+G to quickly open GPT SidePanel, and setup your AI model
2️⃣ Select any text on the webpage and let GPT SidePanel translate, summarize, polish it for you
3️⃣ Custom your own prompts in settings page, and then you can quickly access it with right click later                    

확장 프로그램 기본 정보

이름 GPT SidePanel GPT SidePanel
ID oigehomidkdlnhlcikmmpnogfafclhel
공식 URL https://chromewebstore.google.com/detail/gpt-sidepanel/oigehomidkdlnhlcikmmpnogfafclhel
설명 Providing the best GPT extension experience, empowering your productivity with your own prompts
파일 크기 3.55 MB
설치 횟수 95
현재 버전 1.0.8
최근 업데이트 2024-01-29
출시 날짜 2023-08-25
개발자 https://gptsidepanel.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://gptsidepanel.com/
개인정보 보호 정책 페이지 URL https://gptsidepanel.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GPT SidePanel",
    "description": "Providing the best GPT extension experience, empowering your productivity with your own prompts",
    "version": "1.0.8",
    "manifest_version": 3,
    "icons": {
        "16": "logo.png",
        "32": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "action": {
        "default_title": "Open GPT SidePanel [Alt(Option) + G]"
    },
    "host_permissions": [
        "https:\/\/*.openai.com\/",
        "https:\/\/*.bing.com\/",
        "https:\/\/*.poe.com\/",
        "https:\/\/*.google.com\/"
    ],
    "permissions": [
        "cookies",
        "storage",
        "contextMenus",
        "tabs",
        "unlimitedStorage",
        "sidePanel"
    ],
    "optional_permissions": [
        "background"
    ],
    "minimum_chrome_version": "114",
    "background": {
        "service_worker": "background.js"
    },
    "side_panel": {
        "default_path": "sidePanel.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "shared.js",
                "content-script.js"
            ],
            "css": [
                "content-script.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "logo.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+G",
                "mac": "Alt+G",
                "windows": "Alt+G",
                "chromeos": "Alt+G",
                "linux": "Alt+G"
            },
            "description": "Press Alt(Option) + G to open GPT SidePanel"
        }
    }
}