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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ktty1220 และคุณลักษณะหลักของมันคือ "Export a cookie JSON file that can be imported by Puppeteer."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Export cookie JSON file for Puppeteer

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Export cookie JSON file for Puppeteer Export cookie JSON file for Puppeteer
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:\/\/*\/*"
    ]
}