Export cookie JSON file for Puppeteer
Export a cookie JSON file that can be imported by Puppeteer.
¿Qué es Export cookie JSON file for Puppeteer?
Export cookie JSON file for Puppeteer es una extensión de Chrome desarrollada por ktty1220, y su función principal es "Export a cookie JSON file that can be imported by Puppeteer.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Export cookie JSON file for Puppeteer
Descarga archivos de extensión Export cookie JSON file for Puppeteer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Export cookie JSON file for Puppeteer |
ID | nmckokihipjgplolmcmjakknndddifde |
URL Oficial | https://chromewebstore.google.com/detail/export-cookie-json-file-f/nmckokihipjgplolmcmjakknndddifde |
Descripción | Export a cookie JSON file that can be imported by Puppeteer. |
Tamaño del Archivo | 38.41 KB |
Cantidad de Instalaciones | 7,422 |
Versión Actual | 0.2.0 |
Última Actualización | 2021-05-13 |
Fecha de Publicación | 2020-06-13 |
Calificación | 5.00/5 Total de 8 Calificaciones |
Desarrollador | ktty1220 |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/ktty1220/export-cookie-for-puppeteer |
URL de la Página de Ayuda | https://github.com/ktty1220/export-cookie-for-puppeteer/issues |
URL de la Página de Política de Privacidad | https://ktty1220.github.io/privacy_policy.html |
Idiomas Soportados | 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:\/\/*\/*" ] } |