LocalForage Explorer

A chrome extension for viewing/editing localforage data stores.

What is LocalForage Explorer?

LocalForage Explorer is a Chrome extension developed by Jeremy Gillick, and its main feature is "A chrome extension for viewing/editing localforage data stores.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download LocalForage Explorer Extension CRX File

Download LocalForage Explorer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name LocalForage Explorer LocalForage Explorer
ID nebnfengdjloaaacibpdnjmahkobfeoe
Official URL https://chromewebstore.google.com/detail/localforage-explorer/nebnfengdjloaaacibpdnjmahkobfeoe
Description A chrome extension for viewing/editing localforage data stores.
File Size 292 KB
Installation Count 282
Current Version 1.0.0
Last Updated 2020-06-05
Publish Date 2020-06-05
Developer Jeremy Gillick
Payment Type free
Extension Website https://github.com/jgillick/LocalForageExplorer
Supported Languages 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"
    }
}