ExportThisCookie
ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format
ExportThisCookie là gì?
ExportThisCookie là một tiện ích mở rộng Chrome được phát triển bởi https://exportthiscookie.com, và tính năng chính của nó là "ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ExportThisCookie
Tải xuống các tệp mở rộng ExportThisCookie dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ExportThisCookie |
ID | dannllckdimllhkiplchkcaoheibealk |
URL Chính Thức | https://chromewebstore.google.com/detail/exportthiscookie/dannllckdimllhkiplchkcaoheibealk |
Mô tả | ExportThisCookie chrome plugin allows you to export cookies of the visited webpage in JSON format |
Kích Thước Tệp | 37.42 KB |
Số Lần Cài Đặt | 2,000 |
Phiên Bản Hiện Tại | Initial version |
Cập Nhật Lần Cuối | 2023-04-16 |
Ngày Phát Hành | 2021-01-11 |
Đánh Giá | 4.75/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | https://exportthiscookie.com |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://exportthiscookie.com/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |