Storage viewer
This extension displays desired local/session storage values in the browser window
Storage viewer क्या है?
Storage viewer Andrei Diaconu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension displays desired local/session storage values in the browser window"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Storage viewer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Storage viewer is an extension meant for web programmers whose applications store data in local storage. This applications allows you to define keys you want to track and display them in a nice and unobtrusive way over the page you are building. Does your application store JSON strings as the value of a key? No problem, as you can define the path(Object[0].Child[1].SomeProperty) to the item you want to track and then you can see the 'SomeProperty' value.
एक्सटेंशन की मूल जानकारी
नाम | Storage viewer |
ID | ahppkfdohbfndficpkcjjlggglpnidbd |
आधिकारिक URL | https://chromewebstore.google.com/detail/storage-viewer/ahppkfdohbfndficpkcjjlggglpnidbd |
विवरण | This extension displays desired local/session storage values in the browser window |
फ़ाइल का आकार | 532 KB |
स्थापना संख्या | 285 |
वर्तमान संस्करण | 1.5 |
अंतिम अपडेट | 2017-02-04 |
प्रकाशन तिथि | 2017-02-03 |
रेटिंग | 5.00/5 कुल 10 रेटिंग्स |
डेवलपर | Andrei Diaconu |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Storage viewer", "description": "This extension displays desired local\/session storage values in the browser window", "version": "1.5", "author": "Andrei Diaconu", "browser_action": { "default_icon": "icon.png" }, "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "background": { "scripts": [ "background.js" ] }, "options_page": "options.html", "options_ui": { "chrome_style": true, "page": "options.html" }, "content_scripts": [ { "matches": [ " |