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文件

下载GPT SidePanel扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
        }
    }
}