LZipped Local Storage
LZipped Local Storage
LZipped Local Storage क्या है?
LZipped Local Storage Kris Erickson द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "LZipped Local Storage"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में LZipped Local Storage एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |