Export cookie JSON file for Puppeteer

Export a cookie JSON file that can be imported by Puppeteer.

Export cookie JSON file for Puppeteer란 무엇입니까?

Export cookie JSON file for Puppeteer은(는) ktty1220에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Export a cookie JSON file that can be imported by Puppeteer."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Export cookie JSON file for Puppeteer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This is an extension to export the cookie information of the page you are currently viewing as a JSON file converted to a format that can be read by Puppeteer's setCookie() method.
This is used when scraping Puppeteer by the session ID that is being accessed by the browser.                    

확장 프로그램 기본 정보

이름 Export cookie JSON file for Puppeteer Export cookie JSON file for Puppeteer
ID nmckokihipjgplolmcmjakknndddifde
공식 URL https://chromewebstore.google.com/detail/export-cookie-json-file-f/nmckokihipjgplolmcmjakknndddifde
설명 Export a cookie JSON file that can be imported by Puppeteer.
파일 크기 38.41 KB
설치 횟수 7,422
현재 버전 0.2.0
최근 업데이트 2021-05-13
출시 날짜 2020-06-13
평점 5.00/5 총 8 개의 평점
개발자 ktty1220
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ktty1220/export-cookie-for-puppeteer
도움말 페이지 URL https://github.com/ktty1220/export-cookie-for-puppeteer/issues
개인정보 보호 정책 페이지 URL https://ktty1220.github.io/privacy_policy.html
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_ext_name__",
    "description": "__MSG_ext_desc__",
    "version": "0.2.0",
    "icons": {
        "16": "icon\/icon_16.png",
        "128": "icon\/icon_128.png"
    },
    "default_locale": "ja",
    "browser_action": {
        "default_icon": {
            "19": "icon\/icon_19.png",
            "38": "icon\/icon_38.png"
        },
        "default_title": "__MSG_ext_name__",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "permissions": [
        "tabs",
        "cookies",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}