LZipped Local Storage
LZipped Local Storage
什么是LZipped Local Storage?
LZipped Local Storage是由Kris Erickson开发的Chrome扩展程序,该扩展的主要功能是“LZipped Local Storage”。
扩展截图
下载LZipped Local Storage扩展crx文件
下载LZipped Local Storage扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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)
扩展基本信息
名称 | LZipped Local Storage |
ID | beicplgjaeliclenmidelkloajghllll |
官方URL | https://chromewebstore.google.com/detail/lzipped-local-storage/beicplgjaeliclenmidelkloajghllll |
简介 | LZipped Local Storage |
文件大小 | 20.93 KB |
安装次数 | 326 |
当前版本 | 0.2.2 |
更新时间 | 2024-01-03 |
上架时间 | 2017-06-21 |
评分 | 3.67/5 共3次评分 |
开发者 | Kris Erickson |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/kriserickson/lz-localstorage-chrome-extension |
支持的语言 | 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" ] } |