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