PinMyChat

Pin your chat history from ChatGPT to a list for easy access.

PinMyChat क्या है?

PinMyChat askhaokun द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Pin your chat history from ChatGPT to a list for easy access."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में PinMyChat एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        v1.7.3
- Fixed bug where the "Pin" button not showing.
- Updated the UI.
---
v1.7.1
- ChatGPT updates so fast. I add a process to catch up it so your pinned chats can now be shown!
- New UI.
- Bug fixed.
---
v1.6.5
 - ChatGPT has finally hidden its dangerous "Clear All" button. Consequently, the "lock" feature is now disabled.
- Resolved some performance issues. The system is now more stable.
---
v1.6.3
 - ChatGPT changed it's chat URL which PinMyChat can't match, this version fixed the issue.
---
v1.6: 
 - You can now collapse the pinned chat list.
 - If chat already pinned it, the "pin" button won't show up again.
 - Current chat automatically scrolled on top.
 - Add a lock to the "Clear conversations" button.
---
Pin your favourate chat from ChatGPT list to a pinned-on-top list for easy access.
ChatGPT doesn't allow users to modify the list. So, I created one to pin some chats I frequently use. Hope it helps you too!                    

एक्सटेंशन की मूल जानकारी

नाम PinMyChat PinMyChat
ID gdlfoklhjjpamkniocggkmbapmcncoll
आधिकारिक URL https://chromewebstore.google.com/detail/pinmychat/gdlfoklhjjpamkniocggkmbapmcncoll
विवरण Pin your chat history from ChatGPT to a list for easy access.
फ़ाइल का आकार 112 KB
स्थापना संख्या 444
वर्तमान संस्करण 1.7.3
अंतिम अपडेट 2024-03-06
प्रकाशन तिथि 2023-03-27
रेटिंग 3.43/5 कुल 7 रेटिंग्स
डेवलपर askhaokun
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://imhawken.notion.site/Privacy-Policy-For-Pin-My-Chat-cdd5e52249c74f878f48d15ee1339a75
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "PinMyChat",
    "version": "1.7.3",
    "description": "Pin your chat history from ChatGPT to a list for easy access.",
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "src\/pages\/popup\/index.html",
        "default_icon": "icon-32.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "src\/pages\/content\/index.js"
            ],
            "css": [
                "assets\/css\/contentStyle16988572466.chunk.css"
            ]
        }
    ],
    "devtools_page": "src\/pages\/devtools\/index.html",
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/js\/*.js",
                "assets\/css\/*.css",
                "icon-128.png",
                "icon-32.png",
                "logo.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}