LZipped Local Storage
LZipped Local Storage
ما هو LZipped Local Storage؟
LZipped Local Storage هو إضافة Chrome تم تطويرها بواسطة Kris Erickson، والميزة الرئيسية لها هي "LZipped Local Storage".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة LZipped Local Storage
قم بتنزيل ملفات الامتداد LZipped Local Storage بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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" ] } |