LZipped Local Storage

LZipped Local Storage

Co je LZipped Local Storage?

LZipped Local Storage je rozšíření Chrome vyvinuté Kris Erickson, a jeho hlavní funkcí je „LZipped Local Storage“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření LZipped Local Storage

Stáhněte si soubory rozšíření LZipped Local Storage ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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)                    

Základní Informace o Rozšíření

Název LZipped Local Storage LZipped Local Storage
ID beicplgjaeliclenmidelkloajghllll
Oficiální URL https://chromewebstore.google.com/detail/lzipped-local-storage/beicplgjaeliclenmidelkloajghllll
Popis LZipped Local Storage
Velikost souboru 20.93 KB
Počet instalací 326
Aktuální Verze 0.2.2
Poslední Aktualizace 2024-01-03
Datum Vydání 2017-06-21
Hodnocení 3.67/5 Celkem 3 Hodnocení
Vývojář Kris Erickson
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/kriserickson/lz-localstorage-chrome-extension
Podporované Jazyky 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"
    ]
}