LZipped Local Storage
LZipped Local Storage
Wat is LZipped Local Storage?
LZipped Local Storage is een Chrome-extensie ontwikkeld door Kris Erickson, en de belangrijkste functie is "LZipped Local Storage".
Extensie Screenshots
Download het CRX-bestand van de extensie LZipped Local Storage
Download LZipped Local Storage-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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)
Basisinformatie over de Extensie
Naam | LZipped Local Storage |
ID | beicplgjaeliclenmidelkloajghllll |
Officiële URL | https://chromewebstore.google.com/detail/lzipped-local-storage/beicplgjaeliclenmidelkloajghllll |
Beschrijving | LZipped Local Storage |
Bestandsgrootte | 20.93 KB |
Aantal Installaties | 326 |
Huidige Versie | 0.2.2 |
Laatst Bijgewerkt | 2024-01-03 |
Publicatiedatum | 2017-06-21 |
Beoordeling | 3.67/5 Totaal 3 Beoordelingen |
Ontwikkelaar | Kris Erickson |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/kriserickson/lz-localstorage-chrome-extension |
Ondersteunde Talen | 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" ] } |