Storage viewer

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

Storage viewerคืออะไร?

Storage viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Andrei Diaconu และคุณลักษณะหลักของมันคือ "This extension displays desired local/session storage values in the browser window"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Storage viewer

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}