Storage viewer

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

什么是Storage viewer?

Storage viewer是由Andrei Diaconu开发的Chrome扩展程序,该扩展的主要功能是“This extension displays desired local/session storage values in the browser window”。

扩展截图

screenshot
screenshot

下载Storage viewer扩展crx文件

下载Storage viewer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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 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": [
                ""
            ],
            "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"
    ]
}