Export cookie JSON file for Puppeteer
Export a cookie JSON file that can be imported by Puppeteer.
O que é Export cookie JSON file for Puppeteer?
Export cookie JSON file for Puppeteer é uma extensão do Chrome desenvolvida por ktty1220, e sua principal característica é "Export a cookie JSON file that can be imported by Puppeteer.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Export cookie JSON file for Puppeteer
Baixe arquivos de extensão Export cookie JSON file for Puppeteer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Export cookie JSON file for Puppeteer |
ID | nmckokihipjgplolmcmjakknndddifde |
URL Oficial | https://chromewebstore.google.com/detail/export-cookie-json-file-f/nmckokihipjgplolmcmjakknndddifde |
Descrição | Export a cookie JSON file that can be imported by Puppeteer. |
Tamanho do Arquivo | 38.41 KB |
Contagem de Instalações | 7,422 |
Versão Atual | 0.2.0 |
Última Atualização | 2021-05-13 |
Data de Publicação | 2020-06-13 |
Classificação | 5.00/5 Total de 8 Avaliações |
Desenvolvedor | ktty1220 |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/ktty1220/export-cookie-for-puppeteer |
URL da Página de Ajuda | https://github.com/ktty1220/export-cookie-for-puppeteer/issues |
URL da Página de Política de Privacidade | https://ktty1220.github.io/privacy_policy.html |
Idiomas Suportados | 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:\/\/*\/*" ] } |