CopyChatGPT - Sidebar Hider

Hide sidebar & copy ChatGPT answers. Clean, fast browsing.

什麼是CopyChatGPT - Sidebar Hider?

CopyChatGPT - Sidebar Hider是由hafizzeeshan619開發的Chrome擴展程式,該擴展的主要功能是“Hide sidebar & copy ChatGPT answers. Clean, fast browsing.”。

擴展截圖

screenshot
screenshot
screenshot

下載CopyChatGPT - Sidebar Hider擴展crx文件

下載CopyChatGPT - Sidebar Hider擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        CopyChatGPT - Sidebar Hider is a lightweight and user-friendly Chrome extension that allows you to easily hide the sidebar on your screen when you need more space. With just one click, you can toggle the sidebar on and off, giving you a clutter-free browsing experience.

In addition, the extension also integrates with the ChatGPT language model, allowing you to quickly and easily copy the answers generated by ChatGPT. Simply click on the copy icon that will be the near of the every answer generated by ChatGPT, and the extension will automatically copy the text to your clipboard.

With CopyChatGPT - Sidebar Hider, you can enjoy a distraction-free browsing experience while also having quick access to the power of ChatGPT.                    

擴展基本資訊

名稱 CopyChatGPT - Sidebar Hider CopyChatGPT - Sidebar Hider
ID jcoamkkcoapjegcllcocchbiingomplo
官方網址 https://chrome.google.com/webstore/detail/copychatgpt-sidebar-hider/jcoamkkcoapjegcllcocchbiingomplo
簡介 Hide sidebar & copy ChatGPT answers. Clean, fast browsing.
檔案大小 58.98 KB
安裝次數 580
目前版本 1.2
更新時間 2023-03-06
上架時間 2023-02-20
評分 4.17/5 共 6 次評分
開發者 hafizzeeshan619
電子郵箱 [email protected]
付費類型 free
支援的語言 en,es,it,pt-BR,pt-PT,ru,zh-CN,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "author": "Hafiz Zeeshan",
    "name": "CopyChatGPT - Sidebar Hider",
    "description": "Hide sidebar & copy ChatGPT answers. Clean, fast browsing.",
    "version": "1.2",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "default_locale": "en",
    "host_permissions": [
        "https:\/\/chat.openai.com\/chat\/*"
    ],
    "action": {
        "default_icon": {
            "16": "assets\/icon16.png",
            "24": "assets\/icon24.png",
            "32": "assets\/icon32.png",
            "48": "assets\/icon48.png",
            "64": "assets\/icon64.png",
            "128": "assets\/icon128.png"
        },
        "default_title": "CopyChatGPT - Sidebar Hider"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/chat.openai.com\/chat\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}