Seven JSON Viewer

Minimal JSON Viewer with JSON Path

Seven JSON Viewerとは何ですか?

Seven JSON Viewerはhttps://reez.devによって開発されたChromeの拡張機能で、その主な機能は「Minimal JSON Viewer with JSON Path」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Seven JSON Viewer拡張機能のCRXファイルをダウンロード

Seven JSON Viewer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Minimal JSON Viewer with JSON Path Support.

Features
--------------
1. Syntax Highlighting
2. Collapsible tree for improved readability
3. Dark themed
4. Realtime JSON Path support
5. Multiple Themes

Note: 
This extension might have conflict with other JSON highlighters/beautifiers, like 'JSON Formatter', 'JSONView', 'Pretty JSON' and so on – Please, disable those before trying this for better experience.                    

拡張機能の基本情報

名前 Seven JSON Viewer Seven JSON Viewer
ID cfahdpkjihoomfomffdbmamapgdpohoe
公式URL https://chromewebstore.google.com/detail/seven-json-viewer/cfahdpkjihoomfomffdbmamapgdpohoe
説明 Minimal JSON Viewer with JSON Path
ファイルサイズ 228 KB
インストール数 3,163
現在のバージョン 5.0
最終更新日 2022-07-27
公開日 2020-03-17
評価 4.50/5 合計 8 レビュー
開発者 https://reez.dev
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://reez.dev/project/seven-json-viewer
ヘルプページのURL https://reez.dev/project/seven-json-viewer#support
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Seven JSON Viewer",
    "description": "Minimal JSON Viewer with JSON Path",
    "short_name": "JSON Viewer",
    "version": "5.0",
    "offline_enabled": true,
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "content_security_policy": {
        "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'none';"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "assets\/icon-16.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png",
        "512": "assets\/icon-512.png"
    },
    "action": {
        "default_popup": "popup.html"
    }
}