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 - это расширение Chrome, разработанное ktty1220, и его основная функция - "Export a cookie JSON file that can be imported by Puppeteer.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Export cookie JSON file for Puppeteer

Скачайте файлы расширений Export cookie JSON file for Puppeteer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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:\/\/*\/*"
    ]
}