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.
拡張機能の基本情報
名前 | 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 |
Eメール | [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:\/\/*\/*" ] } |