Export cookie JSON file for Puppeteer

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

Co je Export cookie JSON file for Puppeteer?

Export cookie JSON file for Puppeteer je rozšíření Chrome vyvinuté ktty1220, a jeho hlavní funkcí je „Export a cookie JSON file that can be imported by Puppeteer.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Export cookie JSON file for Puppeteer

Stáhněte si soubory rozšíření Export cookie JSON file for Puppeteer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Export cookie JSON file for Puppeteer Export cookie JSON file for Puppeteer
ID nmckokihipjgplolmcmjakknndddifde
Oficiální URL https://chromewebstore.google.com/detail/export-cookie-json-file-f/nmckokihipjgplolmcmjakknndddifde
Popis Export a cookie JSON file that can be imported by Puppeteer.
Velikost souboru 38.41 KB
Počet instalací 7,422
Aktuální Verze 0.2.0
Poslední Aktualizace 2021-05-13
Datum Vydání 2020-06-13
Hodnocení 5.00/5 Celkem 8 Hodnocení
Vývojář ktty1220
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/ktty1220/export-cookie-for-puppeteer
URL Stránky Nápovědy https://github.com/ktty1220/export-cookie-for-puppeteer/issues
URL Stránky Zásad Ochrany Soukromí https://ktty1220.github.io/privacy_policy.html
Podporované Jazyky 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:\/\/*\/*"
    ]
}