Export cookie JSON file for Puppeteer
Export a cookie JSON file that can be imported by Puppeteer.
Wat is Export cookie JSON file for Puppeteer?
Export cookie JSON file for Puppeteer is een Chrome-extensie ontwikkeld door ktty1220, en de belangrijkste functie is "Export a cookie JSON file that can be imported by Puppeteer.".
Extensie Screenshots
Download het CRX-bestand van de extensie Export cookie JSON file for Puppeteer
Download Export cookie JSON file for Puppeteer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Export cookie JSON file for Puppeteer |
ID | nmckokihipjgplolmcmjakknndddifde |
Officiële URL | https://chromewebstore.google.com/detail/export-cookie-json-file-f/nmckokihipjgplolmcmjakknndddifde |
Beschrijving | Export a cookie JSON file that can be imported by Puppeteer. |
Bestandsgrootte | 38.41 KB |
Aantal Installaties | 7,422 |
Huidige Versie | 0.2.0 |
Laatst Bijgewerkt | 2021-05-13 |
Publicatiedatum | 2020-06-13 |
Beoordeling | 5.00/5 Totaal 8 Beoordelingen |
Ontwikkelaar | ktty1220 |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/ktty1220/export-cookie-for-puppeteer |
Help Pagina-URL | https://github.com/ktty1220/export-cookie-for-puppeteer/issues |
URL van de Privacybeleid Pagina | https://ktty1220.github.io/privacy_policy.html |
Ondersteunde Talen | 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:\/\/*\/*" ] } |