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