LZipped Local Storage

LZipped Local Storage

Что такое LZipped Local Storage?

LZipped Local Storage - это расширение Chrome, разработанное Kris Erickson, и его основная функция - "LZipped Local Storage".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения LZipped Local Storage

Скачайте файлы расширений LZipped Local Storage в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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)                    

Основная информация о расширении

Название LZipped Local Storage LZipped Local Storage
ID beicplgjaeliclenmidelkloajghllll
Официальный URL https://chromewebstore.google.com/detail/lzipped-local-storage/beicplgjaeliclenmidelkloajghllll
Описание LZipped Local Storage
Размер файла 20.93 KB
Количество установок 326
Текущая Версия 0.2.2
Последнее Обновление 2024-01-03
Дата публикации 2017-06-21
Рейтинг 3.67/5 Всего 3 оценок
Разработчик Kris Erickson
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/kriserickson/lz-localstorage-chrome-extension
Поддерживаемые языки 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"
    ]
}