ExportThisCookie
ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format
ExportThisCookieคืออะไร?
ExportThisCookie เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://exportthiscookie.com และคุณลักษณะหลักของมันคือ "ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ExportThisCookie
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" } } |