Storage viewer
This extension displays desired local/session storage values in the browser window
Co to jest Storage viewer?
Storage viewer to rozszerzenie Chrome opracowane przez Andrei Diaconu, a jego główną funkcją jest „This extension displays desired local/session storage values in the browser window”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Storage viewer
Pobierz pliki rozszerzeń Storage viewer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Storage viewer |
ID | ahppkfdohbfndficpkcjjlggglpnidbd |
Oficjalny URL | https://chromewebstore.google.com/detail/storage-viewer/ahppkfdohbfndficpkcjjlggglpnidbd |
Opis | This extension displays desired local/session storage values in the browser window |
Rozmiar pliku | 532 KB |
Liczba instalacji | 285 |
Aktualna Wersja | 1.5 |
Ostatnia Aktualizacja | 2017-02-04 |
Data Publikacji | 2017-02-03 |
Ocena | 5.00/5 Łącznie 10 Oceny |
Deweloper | Andrei Diaconu |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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": [ " |