Chrome Storage Editor

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

What is Chrome Storage Editor?

Chrome Storage Editor is a Chrome extension developed by Mansour, and its main feature is "This extension is a starting point to create a real Chrome extension".

Extension Screenshots

screenshot

Download Chrome Storage Editor Extension CRX File

Download Chrome Storage Editor 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

                        An easy to use chrome storage editor with JSON validator.                    

Extension Basic Information

Name Chrome Storage Editor Chrome Storage Editor
ID onedaldmofocpkohhciabddanpcjgglk
Official URL https://chromewebstore.google.com/detail/chrome-storage-editor/onedaldmofocpkohhciabddanpcjgglk
Description This extension is a starting point to create a real Chrome extension
File Size 1.5 MB
Installation Count 36
Current Version 0.0.1
Last Updated 2019-02-09
Publish Date 2019-02-05
Developer Mansour
Email [email protected]
Payment Type free
Extension Website http://mansour.co.nz/chrome-extensions
Help Page URL http://mansour.co.nz/
Supported Languages 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"
            ]
        }
    ]
}