Export cookie JSON file for Puppeteer
Export a cookie JSON file that can be imported by Puppeteer.
Export cookie JSON file for Puppeteer là gì?
Export cookie JSON file for Puppeteer là một tiện ích mở rộng Chrome được phát triển bởi ktty1220, và tính năng chính của nó là "Export a cookie JSON file that can be imported by Puppeteer.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Export cookie JSON file for Puppeteer
Tải xuống các tệp mở rộng Export cookie JSON file for Puppeteer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Export cookie JSON file for Puppeteer |
ID | nmckokihipjgplolmcmjakknndddifde |
URL Chính Thức | https://chromewebstore.google.com/detail/export-cookie-json-file-f/nmckokihipjgplolmcmjakknndddifde |
Mô tả | Export a cookie JSON file that can be imported by Puppeteer. |
Kích Thước Tệp | 38.41 KB |
Số Lần Cài Đặt | 7,422 |
Phiên Bản Hiện Tại | 0.2.0 |
Cập Nhật Lần Cuối | 2021-05-13 |
Ngày Phát Hành | 2020-06-13 |
Đánh Giá | 5.00/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | ktty1220 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ktty1220/export-cookie-for-puppeteer |
URL Trang Trợ Giúp | https://github.com/ktty1220/export-cookie-for-puppeteer/issues |
URL Trang Chính Sách Bảo Mật | https://ktty1220.github.io/privacy_policy.html |
Ngôn Ngữ Được Hỗ Trợ | 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:\/\/*\/*" ] } |