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