LZipped Local Storage

LZipped Local Storage

O que é LZipped Local Storage?

LZipped Local Storage é uma extensão do Chrome desenvolvida por Kris Erickson, e sua principal característica é "LZipped Local Storage".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão LZipped Local Storage

Baixe arquivos de extensão LZipped Local Storage no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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)                    

Informações Básicas da Extensão

Nome LZipped Local Storage LZipped Local Storage
ID beicplgjaeliclenmidelkloajghllll
URL Oficial https://chromewebstore.google.com/detail/lzipped-local-storage/beicplgjaeliclenmidelkloajghllll
Descrição LZipped Local Storage
Tamanho do Arquivo 20.93 KB
Contagem de Instalações 326
Versão Atual 0.2.2
Última Atualização 2024-01-03
Data de Publicação 2017-06-21
Classificação 3.67/5 Total de 3 Avaliações
Desenvolvedor Kris Erickson
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/kriserickson/lz-localstorage-chrome-extension
Idiomas Suportados 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"
    ]
}