LZipped Local Storage

LZipped Local Storage

Co to jest LZipped Local Storage?

LZipped Local Storage to rozszerzenie Chrome opracowane przez Kris Erickson, a jego główną funkcją jest „LZipped Local Storage”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia LZipped Local Storage

Pobierz pliki rozszerzeń LZipped Local Storage w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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)                    

Podstawowe informacje o rozszerzeniu

Nazwa LZipped Local Storage LZipped Local Storage
ID beicplgjaeliclenmidelkloajghllll
Oficjalny URL https://chromewebstore.google.com/detail/lzipped-local-storage/beicplgjaeliclenmidelkloajghllll
Opis LZipped Local Storage
Rozmiar pliku 20.93 KB
Liczba instalacji 326
Aktualna Wersja 0.2.2
Ostatnia Aktualizacja 2024-01-03
Data Publikacji 2017-06-21
Ocena 3.67/5 Łącznie 3 Oceny
Deweloper Kris Erickson
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/kriserickson/lz-localstorage-chrome-extension
Obsługiwane Języki 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"
    ]
}