ExportThisCookie
ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format
Apa itu ExportThisCookie?
ExportThisCookie adalah ekstensi Chrome yang dikembangkan oleh https://exportthiscookie.com, dan fitur utamanya adalah "ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi ExportThisCookie
Unduh file ekstensi ExportThisCookie dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | ExportThisCookie |
ID | dannllckdimllhkiplchkcaoheibealk |
URL Resmi | https://chromewebstore.google.com/detail/exportthiscookie/dannllckdimllhkiplchkcaoheibealk |
Deskripsi | ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format |
Ukuran File | 37.42 KB |
Jumlah Instalasi | 2,000 |
Versi Saat Ini | Initial version |
Terakhir Diperbarui | 2023-04-16 |
Tanggal Publikasi | 2021-01-11 |
Penilaian | 4.75/5 Total 4 Penilaian |
Pengembang | https://exportthiscookie.com |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Kebijakan Privasi | https://exportthiscookie.com/privacy |
Bahasa yang Didukung | 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" } } |