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) 擴展基本資訊
| 名稱 | |
| ID | beicplgjaeliclenmidelkloajghllll |
| 官方網址 | 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"
]
} | |