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
官方網址 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
電子郵箱 [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
}