Export cookie JSON file for Puppeteer

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

Cos'è Export cookie JSON file for Puppeteer?

Export cookie JSON file for Puppeteer è un'estensione di Chrome sviluppata da ktty1220, e la sua funzione principale è "Export a cookie JSON file that can be imported by Puppeteer.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Export cookie JSON file for Puppeteer

Scarica i file di estensione Export cookie JSON file for Puppeteer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Export cookie JSON file for Puppeteer Export cookie JSON file for Puppeteer
ID nmckokihipjgplolmcmjakknndddifde
URL Ufficiale https://chromewebstore.google.com/detail/export-cookie-json-file-f/nmckokihipjgplolmcmjakknndddifde
Descrizione Export a cookie JSON file that can be imported by Puppeteer.
Dimensione del File 38.41 KB
Conteggio Installazioni 7,422
Versione Corrente 0.2.0
Ultimo Aggiornamento 2021-05-13
Data di Pubblicazione 2020-06-13
Valutazione 5.00/5 Totale 8 Valutazioni
Sviluppatore ktty1220
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/ktty1220/export-cookie-for-puppeteer
URL della Pagina di Aiuto https://github.com/ktty1220/export-cookie-for-puppeteer/issues
URL della Pagina della Politica sulla Privacy https://ktty1220.github.io/privacy_policy.html
Lingue Supportate 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:\/\/*\/*"
    ]
}