LocalForage Explorer

A chrome extension for viewing/editing localforage data stores.

LocalForage Explorerคืออะไร?

LocalForage Explorer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jeremy Gillick และคุณลักษณะหลักของมันคือ "A chrome extension for viewing/editing localforage data stores."

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

screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย LocalForage Explorer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        If you use localForage for your website, this extension makes it easy to view, edit, and add localForage items right from a new devtools panel. Even if your bundler does not attach localforage to the window object, this extension works just fine by using it's own copy.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ LocalForage Explorer LocalForage Explorer
ID nebnfengdjloaaacibpdnjmahkobfeoe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/localforage-explorer/nebnfengdjloaaacibpdnjmahkobfeoe
คำอธิบาย A chrome extension for viewing/editing localforage data stores.
ขนาดไฟล์ 292 KB
จำนวนการติดตั้ง 282
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2020-06-05
วันที่เผยแพร่ 2020-06-05
ผู้พัฒนา Jeremy Gillick
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jgillick/LocalForageExplorer
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LocalForage Explorer",
    "description": "A chrome extension for viewing\/editing localforage data stores.",
    "author": "Jeremy Gillick",
    "version": "1.0.0",
    "version_name": "1.0.0",
    "devtools_page": "devtools-panel\/index.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script\/index.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_security_policy": "default-src 'self'; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-eval';  connect-src *; frame-src *;",
    "web_accessible_resources": [
        "*"
    ],
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    }
}