LZipped Local Storage
LZipped Local Storage
LZipped Local Storage là gì?
LZipped Local Storage là một tiện ích mở rộng Chrome được phát triển bởi Kris Erickson, và tính năng chính của nó là "LZipped Local Storage".
Ả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 LZipped Local Storage
Tải xuống các tệp mở rộng LZipped Local Storage 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
This is a way to look at Local Storage in the Dev Tools when the storage is being encrypted with LZString.js (https://github.com/pieroxy/lz-string). Also might be useful since it pretty prints JSON (double click on any row to get the Pretty Printed value). Very feature bare, banged out in a couple of hours as a tool I needed. The source is available on Github (https://github.com/kriserickson/lz-localstorage-chrome-extension)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | LZipped Local Storage |
ID | beicplgjaeliclenmidelkloajghllll |
URL Chính Thức | https://chromewebstore.google.com/detail/lzipped-local-storage/beicplgjaeliclenmidelkloajghllll |
Mô tả | LZipped Local Storage |
Kích Thước Tệp | 20.93 KB |
Số Lần Cài Đặt | 326 |
Phiên Bản Hiện Tại | 0.2.2 |
Cập Nhật Lần Cuối | 2024-01-03 |
Ngày Phát Hành | 2017-06-21 |
Đánh Giá | 3.67/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Kris Erickson |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/kriserickson/lz-localstorage-chrome-extension |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "LZipped Local Storage", "version": "0.2.2", "description": "LZipped Local Storage", "icons": { "16": "lzip16.png", "48": "lzip48.png", "128": "lzip128.png" }, "devtools_page": "devtools.html", "background": { "persistent": false, "scripts": [ "background.js" ] }, "permissions": [ "background", "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ "getstorage.js", "background.js" ] } |