Chrome Storage Editor

This extension is a starting point to create a real Chrome extension

Что такое Chrome Storage Editor?

Chrome Storage Editor - это расширение Chrome, разработанное Mansour, и его основная функция - "This extension is a starting point to create a real Chrome extension".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Chrome Storage Editor

Скачайте файлы расширений Chrome Storage Editor в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        An easy to use chrome storage editor with JSON validator.                    

Основная информация о расширении

Название Chrome Storage Editor Chrome Storage Editor
ID onedaldmofocpkohhciabddanpcjgglk
Официальный URL https://chromewebstore.google.com/detail/chrome-storage-editor/onedaldmofocpkohhciabddanpcjgglk
Описание This extension is a starting point to create a real Chrome extension
Размер файла 1.5 MB
Количество установок 36
Текущая Версия 0.0.1
Последнее Обновление 2019-02-09
Дата публикации 2019-02-05
Разработчик Mansour
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://mansour.co.nz/chrome-extensions
URL страницы помощи http://mansour.co.nz/
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome Storage Editor",
    "description": "This extension is a starting point to create a real Chrome extension",
    "version": "0.0.1",
    "browser_action": {
        "default_popup": "index.html",
        "default_title": "Open the popup"
    },
    "icons": {
        "16": "logo-small.png",
        "48": "logo-small.png",
        "128": "logo-small.png"
    },
    "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'",
    "permissions": [
        "storage",
        "activeTab",
        "background",
        "unlimitedStorage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/content.js"
            ]
        }
    ]
}