Storage viewer
This extension displays desired local/session storage values in the browser window
Apa itu Storage viewer?
Storage viewer adalah ekstensi Chrome yang dikembangkan oleh Andrei Diaconu, dan fitur utamanya adalah "This extension displays desired local/session storage values in the browser window".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Storage viewer
Unduh file ekstensi Storage viewer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Storage viewer |
ID | ahppkfdohbfndficpkcjjlggglpnidbd |
URL Resmi | https://chromewebstore.google.com/detail/storage-viewer/ahppkfdohbfndficpkcjjlggglpnidbd |
Deskripsi | This extension displays desired local/session storage values in the browser window |
Ukuran File | 532 KB |
Jumlah Instalasi | 285 |
Versi Saat Ini | 1.5 |
Terakhir Diperbarui | 2017-02-04 |
Tanggal Publikasi | 2017-02-03 |
Penilaian | 5.00/5 Total 10 Penilaian |
Pengembang | Andrei Diaconu |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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": [ " |