LZipped Local Storage
LZipped Local Storage
Qu'est-ce que LZipped Local Storage ?
LZipped Local Storage est une extension Chrome développée par Kris Erickson, et sa fonction principale est "LZipped Local Storage".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension LZipped Local Storage
Téléchargez les fichiers d'extension LZipped Local Storage au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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)
Informations de Base sur l'Extension
Nom | LZipped Local Storage |
ID | beicplgjaeliclenmidelkloajghllll |
URL Officiel | https://chromewebstore.google.com/detail/lzipped-local-storage/beicplgjaeliclenmidelkloajghllll |
Description | LZipped Local Storage |
Taille du Fichier | 20.93 KB |
Nombre d'Installations | 326 |
Version Actuelle | 0.2.2 |
Dernière Mise à Jour | 2024-01-03 |
Date de Publication | 2017-06-21 |
Évaluation | 3.67/5 Total 3 Évaluations |
Développeur | Kris Erickson |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/kriserickson/lz-localstorage-chrome-extension |
Langues Prises en Charge | 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" ] } |