ChatGPT Cookies

Easily copy or download your ChatGPT Cookies + user-agent values with one click.

ChatGPT Cookies क्या है?

ChatGPT Cookies Brian Roach द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily copy or download your ChatGPT Cookies + user-agent values with one click."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        This Chrome Extension allows you to quickly and easily copy ChatGPT cookie values and user-agent strings to your clipboard, or export a single `.env` file with everything.

Usage:
1. Install the extension
2. Click on the extension icon in the Chrome toolbar to automatically navigate to the ChatGPT website 👉️ https://chat.openai.com/chat
3. Select one of the options to automatically copy the `SESSION_TOKEN`, `USER_AGENT`, and `CF_CLEARANCE` or all values at once to your clipboard, or download a single `.env-all` with all of them.
4. Paste the values wherever they are needed in your project, such as in the `.env` file.

Source code: 
https://github.com/itsbrex/ChatGPT-Cookies


### Changelog

#### v2.0
- Copy individual cookies or copy all at once
- Export all values as an .env file
- Added onboarding.html page


#### v1.1
- Added the ability to copy `SESSION_TOKEN`, `USER_AGENT`, and `CF_CLEARANCE` values in addition to the `SESSION_TOKEN` value
- Added a prompt to confirm that the session token has been successfully copied
- Fixed a bug where the extension was not correctly copying the `CF_CLEARANCE` value

#### v1.0
- Initial release                    

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

नाम ChatGPT Cookies ChatGPT Cookies
ID nnkcnhbioochcaoeofflcljhhpceoknl
आधिकारिक URL https://chromewebstore.google.com/detail/chatgpt-cookies/nnkcnhbioochcaoeofflcljhhpceoknl
विवरण Easily copy or download your ChatGPT Cookies + user-agent values with one click.
फ़ाइल का आकार 67.79 MB
स्थापना संख्या 2,068
वर्तमान संस्करण 2.0
अंतिम अपडेट 2023-01-02
प्रकाशन तिथि 2022-12-12
डेवलपर Brian Roach
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/itsbrex/ChatGPT-Cookies/
सहायता पृष्ठ URL https://github.com/itsbrex/ChatGPT-Cookies/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Cookies",
    "author": "Brian Roach",
    "homepage_url": "https:\/\/github.com\/itsbrex\/GPT-Cookies",
    "description": "Easily copy or download your ChatGPT Cookies + user-agent values with one click.",
    "version": "2.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icons\/icon16x16.png",
        "32": "icons\/icon32x32.png",
        "48": "icons\/icon48x48.png",
        "64": "icons\/icon64x64.png",
        "128": "icons\/icon128x128.png",
        "256": "icons\/icon256x256.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/icon16x16.png",
            "32": "icons\/icon32x32.png",
            "48": "icons\/icon48x48.png",
            "64": "icons\/icon64x64.png",
            "128": "icons\/icon128x128.png",
            "256": "icons\/icon256x256.png"
        }
    },
    "host_permissions": [
        "https:\/\/*.openai.com\/*"
    ],
    "permissions": [
        "activeTab",
        "cookies",
        "clipboardWrite"
    ]
}