JSON-As-Table Viewer

*** View JSON response from a URL as HTML table ***

JSON-As-Table Viewerคืออะไร?

JSON-As-Table Viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://actigence.com และคุณลักษณะหลักของมันคือ "*** View JSON response from a URL as HTML table ***"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย JSON-As-Table Viewer

ดาวน์โหลดไฟล์ส่วนขยาย JSON-As-Table Viewer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Jason-As-Table viewer is a utility Chrome Extension that displays JSON data as a table.

This extension is specially useful for RESTful web service developers and consumers. Most of the times data returned from RESTful APIs is in the form of JSON data and contains list of information. Example:

-------------------------------------------------------------------------------------------------------------------------------------------------------
{
    "data"       : [
        {
            "id"        : 7,
            "email"     : "[email protected]",
            "first_name": "Michael",
            "last_name" : "Lawson",
            "avatar"    : "https://s3.amazonaws.com/uifaces/faces/twitter/follettkyle/128.jpg"
        },
        {
            "id"        : 8,
            "email"     : "[email protected]",
            "first_name": "Lindsay",
            "last_name" : "Ferguson",
            "avatar"    : "https://s3.amazonaws.com/uifaces/faces/twitter/araa3185/128.jpg"
        },
        {
            "id"        : 9,
            "email"     : "[email protected]",
            "first_name": "Tobias",
            "last_name" : "Funke",
            "avatar"    : "https://s3.amazonaws.com/uifaces/faces/twitter/vivekprvr/128.jpg"
        }
    ]
}
-------------------------------------------------------------------------------------------------------------------------------------------------------

The JSON array above is not easy to read if it has many entries.

This extension displays this JSON data in an HTML table format. [See screenshots.]

The JSON data is converted to table format using following rules:

If JSON data is directly an array, then each item of that array is shown as a row in the table.
If JSON data is an object, then the items with in the first array field are shown as table rows.
If JSON does not contain any array field, then JSON data is not converted.

This is an Open Source plugin with code available at https://github.com/actigence/json-to-table-chrome-extension

Privacy Policy:
This plugin works on your local machine and does not connect to any external service for its operation. We do not collect any data about your plugin usage, sites visited or any personal data. No data is sent to us through this plugin.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ JSON-As-Table Viewer JSON-As-Table Viewer
ID khclkgjdjddedohnomokbhinlmpclick
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/json-as-table-viewer/khclkgjdjddedohnomokbhinlmpclick
คำอธิบาย *** View JSON response from a URL as HTML table ***
ขนาดไฟล์ 616 KB
จำนวนการติดตั้ง 3,763
เวอร์ชันปัจจุบัน 1.0.5
อัปเดตครั้งล่าสุด 2022-06-04
วันที่เผยแพร่ 2020-06-14
คะแนน 3.78/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา https://actigence.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Actigence/json-to-table-chrome-extension
URL หน้าช่วยเหลือ https://github.com/Actigence/json-to-table-chrome-extension/issues
URL หน้านโยบายความเป็นส่วนตัว https://www.privacypolicies.com/live/147a5a93-65c3-4873-8b27-c2ed8d8b82b8
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JSON-As-Table Viewer",
    "version": "1.0.5",
    "description": "*** View JSON response from a URL as HTML table ***",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "css": [
                "libs\/datatables.css",
                "style.css"
            ],
            "js": [
                "libs\/jQuery-3.3.1\/jquery-3.3.1.js",
                "libs\/datatables.js",
                "src\/content.js",
                "main.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "web_accessible_resources": [
        "libs\/DataTables-1.10.21\/images\/*",
        "images\/*"
    ]
}