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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Export a cookie JSON file that can be imported by Puppeteer."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Export cookie JSON file for Puppeteer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ 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:\/\/*\/*" ] } |