Export cookie JSON file for Puppeteer

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

Was ist Export cookie JSON file for Puppeteer?

Export cookie JSON file for Puppeteer ist eine Chrome-Erweiterung, die von ktty1220 entwickelt wurde, und ihr Hauptmerkmal ist "Export a cookie JSON file that can be imported by Puppeteer.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Export cookie JSON file for Puppeteer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Export cookie JSON file for Puppeteer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Export cookie JSON file for Puppeteer Export cookie JSON file for Puppeteer
ID nmckokihipjgplolmcmjakknndddifde
Offizielle URL https://chromewebstore.google.com/detail/export-cookie-json-file-f/nmckokihipjgplolmcmjakknndddifde
Beschreibung Export a cookie JSON file that can be imported by Puppeteer.
Dateigröße 38.41 KB
Installationsanzahl 7,422
Aktuelle Version 0.2.0
Letztes Update 2021-05-13
Veröffentlichungsdatum 2020-06-13
Bewertung 5.00/5 Insgesamt 8 Bewertungen
Entwickler ktty1220
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/ktty1220/export-cookie-for-puppeteer
Hilfeseite URL https://github.com/ktty1220/export-cookie-for-puppeteer/issues
URL der Datenschutzrichtlinien-Seite https://ktty1220.github.io/privacy_policy.html
Unterstützte Sprachen 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:\/\/*\/*"
    ]
}