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
Eメール [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"
            ]
        }
    ]
}