Export cookie JSON file for Puppeteer
Export a cookie JSON file that can be imported by Puppeteer.
Qu'est-ce que Export cookie JSON file for Puppeteer ?
Export cookie JSON file for Puppeteer est une extension Chrome développée par ktty1220, et sa fonction principale est "Export a cookie JSON file that can be imported by Puppeteer.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Export cookie JSON file for Puppeteer
Téléchargez les fichiers d'extension Export cookie JSON file for Puppeteer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Export cookie JSON file for Puppeteer |
ID | nmckokihipjgplolmcmjakknndddifde |
URL Officiel | https://chromewebstore.google.com/detail/export-cookie-json-file-f/nmckokihipjgplolmcmjakknndddifde |
Description | Export a cookie JSON file that can be imported by Puppeteer. |
Taille du Fichier | 38.41 KB |
Nombre d'Installations | 7,422 |
Version Actuelle | 0.2.0 |
Dernière Mise à Jour | 2021-05-13 |
Date de Publication | 2020-06-13 |
Évaluation | 5.00/5 Total 8 Évaluations |
Développeur | ktty1220 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/ktty1220/export-cookie-for-puppeteer |
URL de la Page d'Aide | https://github.com/ktty1220/export-cookie-for-puppeteer/issues |
URL de la Page de Politique de Confidentialité | https://ktty1220.github.io/privacy_policy.html |
Langues Prises en Charge | 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:\/\/*\/*" ] } |