Storage viewer

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

Co je Storage viewer?

Storage viewer je rozšíření Chrome vyvinuté Andrei Diaconu, a jeho hlavní funkcí je „This extension displays desired local/session storage values in the browser window“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Storage viewer

Stáhněte si soubory rozšíření Storage viewer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Storage viewer Storage viewer
ID ahppkfdohbfndficpkcjjlggglpnidbd
Oficiální URL https://chromewebstore.google.com/detail/storage-viewer/ahppkfdohbfndficpkcjjlggglpnidbd
Popis This extension displays desired local/session storage values in the browser window
Velikost souboru 532 KB
Počet instalací 285
Aktuální Verze 1.5
Poslední Aktualizace 2017-02-04
Datum Vydání 2017-02-03
Hodnocení 5.00/5 Celkem 10 Hodnocení
Vývojář Andrei Diaconu
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    ]
}