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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

 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
이메일 [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
}