Storage viewer

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

Storage viewer là gì?

Storage viewer là một tiện ích mở rộng Chrome được phát triển bởi Andrei Diaconu, và tính năng chính của nó là "This extension displays desired local/session storage values in the browser window".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Storage viewer

Tải xuống các tệp mở rộng Storage viewer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Storage viewer Storage viewer
ID ahppkfdohbfndficpkcjjlggglpnidbd
URL Chính Thức https://chromewebstore.google.com/detail/storage-viewer/ahppkfdohbfndficpkcjjlggglpnidbd
Mô tả This extension displays desired local/session storage values in the browser window
Kích Thước Tệp 532 KB
Số Lần Cài Đặt 285
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2017-02-04
Ngày Phát Hành 2017-02-03
Đánh Giá 5.00/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Andrei Diaconu
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}