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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Export cookie JSON file for Puppeteer
قم بتنزيل ملفات الامتداد Export cookie JSON file for Puppeteer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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 |
عنوان صفحة المساعدة | https://github.com/ktty1220/export-cookie-for-puppeteer/issues |
عنوان صفحة سياسة الخصوصية | 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:\/\/*\/*" ] } |