LZipped Local Storage

LZipped Local Storage

LZipped Local Storageとは何ですか?

LZipped Local StorageはKris Ericksonによって開発されたChromeの拡張機能で、その主な機能は「LZipped Local Storage」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

LZipped Local Storage拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    ]
}