LocalForage Explorer

A chrome extension for viewing/editing localforage data stores.

什麼是LocalForage Explorer?

LocalForage Explorer是由Jeremy Gillick開發的Chrome擴展程式,該擴展的主要功能是“A chrome extension for viewing/editing localforage data stores.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載LocalForage Explorer擴展crx文件

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