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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}