Storage viewer

This extension displays desired local/session storage values in the browser window

What is Storage viewer?

Storage viewer is a Chrome extension developed by Andrei Diaconu, and its main feature is "This extension displays desired local/session storage values in the browser window".

Extension Screenshots

screenshot
screenshot

Download Storage viewer Extension CRX File

Download Storage viewer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Storage viewer Storage viewer
ID ahppkfdohbfndficpkcjjlggglpnidbd
Official URL https://chromewebstore.google.com/detail/storage-viewer/ahppkfdohbfndficpkcjjlggglpnidbd
Description This extension displays desired local/session storage values in the browser window
File Size 532 KB
Installation Count 285
Current Version 1.5
Last Updated 2017-02-04
Publish Date 2017-02-03
Rating 5.00/5 Total 10 Ratings
Developer Andrei Diaconu
Email [email protected]
Payment Type free
Supported Languages 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": [
                ""
            ],
            "js": [
                "js\/jquery.min.js",
                "storage_viewer.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "storage_viewer.html",
        "Refresh-20.png",
        "Copy-15.png",
        "Delete-20-black.png",
        "Delete-15.png",
        "Edit-15.png",
        "style.css"
    ],
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/",
        "storage"
    ]
}