Pimp My Chat

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

Pimp My Chat là gì?

Pimp My Chat là một tiện ích mở rộng Chrome được phát triển bởi florian.standhartinger, và tính năng chính của nó là "Improve the user experience of ChatGPT and add missing features like: Search your Chat History".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Pimp My Chat

Tải xuống các tệp mở rộng Pimp My Chat dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Pimp My Chat Pimp My Chat
ID bdepgidiiieegfdiaijfmgjbohpgolpa
URL Chính Thức https://chromewebstore.google.com/detail/pimp-my-chat/bdepgidiiieegfdiaijfmgjbohpgolpa
Mô tả Improve the user experience of ChatGPT and add missing features like: Search your Chat History
Kích Thước Tệp 1.47 MB
Số Lần Cài Đặt 168
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2023-12-30
Ngày Phát Hành 2023-12-29
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển florian.standhartinger
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://gpt-assisted-coding.onrender.com/privacy-pmc.txt
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}