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是由ktty1220开发的Chrome扩展程序,该扩展的主要功能是“Export a cookie JSON file that can be imported by Puppeteer.”。
扩展截图
下载Export cookie JSON file for Puppeteer扩展crx文件
下载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. 扩展基本信息
| 名称 | |
| 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:\/\/*\/*"
]
} | |