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