Preloaded JSON viewer

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

Preloaded JSON viewer là gì?

Preloaded JSON viewer là một tiện ích mở rộng Chrome được phát triển bởi Dipak, và tính năng chính của nó là "View all JSON information loaded in a webpage inside a script tag with type text/json".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Preloaded JSON viewer

Tải xuống các tệp mở rộng Preloaded JSON viewer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

 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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Preloaded JSON viewer Preloaded JSON viewer
ID ljblpbnhpnnkjkeilohccngpjmjhifkj
URL Chính Thức https://chromewebstore.google.com/detail/preloaded-json-viewer/ljblpbnhpnnkjkeilohccngpjmjhifkj
Mô tả View all JSON information loaded in a webpage inside a script tag with type text/json
Kích Thước Tệp 47.73 KB
Số Lần Cài Đặt 22
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2019-05-03
Ngày Phát Hành 2019-04-29
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Dipak
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dipakchandranp/preloaded-json-viewer
URL Trang Trợ Giúp https://github.com/dipakchandranp/preloaded-json-viewer/issues
Ngôn Ngữ Được Hỗ Trợ 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
}