ChatGPT Cookies

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

ChatGPT Cookies란 무엇입니까?

ChatGPT Cookies은(는) Brian Roach에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily copy or download your ChatGPT Cookies + user-agent values with one click."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

ChatGPT Cookies 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}