LZipped Local Storage
LZipped Local Storage
Hvad er LZipped Local Storage?
LZipped Local Storage er en Chrome-udvidelse udviklet af Kris Erickson, og dens hovedfunktion er "LZipped Local Storage".
Udvidelsesskærmbilleder
Download LZipped Local Storage-udvidelses-CRX-fil
Download LZipped Local Storage-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
| Navn | |
| ID | beicplgjaeliclenmidelkloajghllll |
| Officiel URL | https://chromewebstore.google.com/detail/lzipped-local-storage/beicplgjaeliclenmidelkloajghllll |
| Beskrivelse | LZipped Local Storage |
| Filstørrelse | 20.93 KB |
| Antal Installationer | 326 |
| Nuværende Version | 0.2.2 |
| Senest Opdateret | 2024-01-03 |
| Udgivelsesdato | 2017-06-21 |
| Bedømmelse | 3.67/5 Samlet 3 Bedømmelser |
| Udvikler | Kris Erickson |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/kriserickson/lz-localstorage-chrome-extension |
| Understøttede Sprog | 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"
]
} | |