Chrome Storage Editor

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

什么是Chrome Storage Editor?

Chrome Storage Editor是由Mansour开发的Chrome扩展程序,该扩展的主要功能是“This extension is a starting point to create a real Chrome extension”。

扩展截图

screenshot

下载Chrome Storage Editor扩展crx文件

下载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"
            ]
        }
    ]
}