ExportThisCookie
ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format
ExportThisCookieとは何ですか?
ExportThisCookieはhttps://exportthiscookie.comによって開発されたChromeの拡張機能で、その主な機能は「ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format」です。
拡張機能のスクリーンショット
ExportThisCookie拡張機能のCRXファイルをダウンロード
ExportThisCookie拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Export cookies in JSON format which can be directly imported in your code. Example: This comes handy while using python requests library. This allows you export cookie in {"key":"value"} format.
拡張機能の基本情報
名前 | ExportThisCookie |
ID | dannllckdimllhkiplchkcaoheibealk |
公式URL | https://chromewebstore.google.com/detail/exportthiscookie/dannllckdimllhkiplchkcaoheibealk |
説明 | ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format |
ファイルサイズ | 37.42 KB |
インストール数 | 2,000 |
現在のバージョン | Initial version |
最終更新日 | 2023-04-16 |
公開日 | 2021-01-11 |
評価 | 4.75/5 合計 4 レビュー |
開発者 | https://exportthiscookie.com |
Eメール | [email protected] |
支払い方法 | free |
プライバシーポリシーページのURL | https://exportthiscookie.com/privacy |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ExportThisCookie", "version": "0.0.0.2", "version_name": "Initial version", "description": "ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format", "default_locale": "en", "icons": { "128": "\/cookie.png" }, "permissions": [ "webRequest", "webRequestBlocking", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "\/js\/background.js" ] }, "content_security_policy": "script-src 'self' https:\/\/www.googletagmanager.com; object-src 'self'", "browser_action": { "default_icon": "\/cookie.png", "default_title": "ExportThisCookie", "default_popup": "\/popup.html" } } |