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 |
| 官方網址 | 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:\/\/*\/*"
]
} | |