Preloaded JSON viewer

View all JSON information loaded in a webpage inside a script tag with type text/json

Preloaded JSON viewerとは何ですか?

Preloaded JSON viewerはDipakによって開発されたChromeの拡張機能で、その主な機能は「View all JSON information loaded in a webpage inside a script tag with type text/json」です。

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

screenshot

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

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

拡張機能の使用方法

 Web site is client-side rendered using React. We normally load data over HTTPS using our syncer architecture, but to avoid the extra roundtrip for the first screen that’s displayed, we embed it into the initial HTML response. Once the server has loaded the data that the client will need¹, it outputs it using a simple 

This chrome plugin will help to see the data loaded into page like this, to help ease debugging while development and testing                    

拡張機能の基本情報

名前 Preloaded JSON viewer Preloaded JSON viewer
ID ljblpbnhpnnkjkeilohccngpjmjhifkj
公式URL https://chromewebstore.google.com/detail/preloaded-json-viewer/ljblpbnhpnnkjkeilohccngpjmjhifkj
説明 View all JSON information loaded in a webpage inside a script tag with type text/json
ファイルサイズ 47.73 KB
インストール数 22
現在のバージョン 1.2
最終更新日 2019-05-03
公開日 2019-04-29
評価 5.00/5 合計 1 レビュー
開発者 Dipak
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/dipakchandranp/preloaded-json-viewer
ヘルプページのURL https://github.com/dipakchandranp/preloaded-json-viewer/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Preloaded JSON viewer",
    "version": "1.2",
    "description": "View all JSON information loaded in a webpage inside a script tag with type text\/json",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "JSON viewer",
        "default_icons": {
            "16": "images\/16.png",
            "32": "images\/32.png",
            "48": "images\/64.png",
            "128": "images\/128.png"
        }
    },
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/64.png",
        "128": "images\/128.png"
    },
    "manifest_version": 2
}