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
官方網址 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"
            ]
        }
    ]
}