Pimp My Chat

Improve the user experience of ChatGPT and add missing features like: Search your Chat History

Pimp My Chatとは何ですか?

Pimp My Chatはflorian.standhartingerによって開発されたChromeの拡張機能で、その主な機能は「Improve the user experience of ChatGPT and add missing features like: Search your Chat History」です。

拡張機能のスクリーンショット

screenshot

Pimp My Chat拡張機能のCRXファイルをダウンロード

Pimp My Chat拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Improve the user experience of ChatGPT and add missing features like: Search your Chat History                    

拡張機能の基本情報

名前 Pimp My Chat Pimp My Chat
ID bdepgidiiieegfdiaijfmgjbohpgolpa
公式URL https://chromewebstore.google.com/detail/pimp-my-chat/bdepgidiiieegfdiaijfmgjbohpgolpa
説明 Improve the user experience of ChatGPT and add missing features like: Search your Chat History
ファイルサイズ 1.47 MB
インストール数 168
現在のバージョン 1.2
最終更新日 2023-12-30
公開日 2023-12-29
評価 4.00/5 合計 1 レビュー
開発者 florian.standhartinger
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL https://gpt-assisted-coding.onrender.com/privacy-pmc.txt
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Pimp My Chat",
    "version": "1.2",
    "permissions": [
        "scripting",
        "tabs",
        "webRequest"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/chat.openai.com\/"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "styles.css",
                "panel.html",
                "panel.css",
                "animate.min.css"
            ],
            "matches": [
                ""
            ]
        }
    ]
}