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
官方網址 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"
    ]
}