LZipped Local Storage
LZipped Local Storage
Vad är LZipped Local Storage?
LZipped Local Storage är en Chrome-tillägg utvecklad av Kris Erickson, och dess huvudfunktion är "LZipped Local Storage".
Tilläggsskärmbilder
Ladda ner LZipped Local Storage-förlängningens CRX-fil
Ladda ner LZipped Local Storage-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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) Grundläggande Information om Tillägg
| Namn | |
| ID | beicplgjaeliclenmidelkloajghllll |
| Officiell webbadress | https://chromewebstore.google.com/detail/lzipped-local-storage/beicplgjaeliclenmidelkloajghllll |
| Beskrivning | LZipped Local Storage |
| Filstorlek | 20.93 KB |
| Antal Installationer | 326 |
| Aktuell Version | 0.2.2 |
| Senast Uppdaterad | 2024-01-03 |
| Publiceringsdatum | 2017-06-21 |
| Betyg | 3.67/5 Totalt 3 Betyg |
| Utvecklare | Kris Erickson |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/kriserickson/lz-localstorage-chrome-extension |
| Stödda Språk | 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"
]
} | |