GPT SidePanel

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

GPT SidePanelคืออะไร?

GPT SidePanel เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://gptsidepanel.com และคุณลักษณะหลักของมันคือ "Providing the best GPT extension experience, empowering your productivity with your own prompts"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GPT SidePanel

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    }
}