Export cookie JSON file for Puppeteer

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

What is Export cookie JSON file for Puppeteer?

Export cookie JSON file for Puppeteer is a Chrome extension developed by ktty1220, and its main feature is "Export a cookie JSON file that can be imported by Puppeteer.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Export cookie JSON file for Puppeteer Extension CRX File

Download Export cookie JSON file for Puppeteer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Export cookie JSON file for Puppeteer Export cookie JSON file for Puppeteer
ID nmckokihipjgplolmcmjakknndddifde
Official URL https://chromewebstore.google.com/detail/export-cookie-json-file-f/nmckokihipjgplolmcmjakknndddifde
Description Export a cookie JSON file that can be imported by Puppeteer.
File Size 38.41 KB
Installation Count 7,422
Current Version 0.2.0
Last Updated 2021-05-13
Publish Date 2020-06-13
Rating 5.00/5 Total 8 Ratings
Developer ktty1220
Email [email protected]
Payment Type free
Extension Website https://github.com/ktty1220/export-cookie-for-puppeteer
Help Page URL https://github.com/ktty1220/export-cookie-for-puppeteer/issues
Privacy Policy Page URL https://ktty1220.github.io/privacy_policy.html
Supported Languages 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:\/\/*\/*"
    ]
}