JSON -> TABLE

Viewer for XLSX, JSON, XML REST responses or files as HTML table with detection nested columns and tables

JSON -> TABLE क्या है?

JSON -> TABLE Jes द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Viewer for XLSX, JSON, XML REST responses or files as HTML table with detection nested columns and tables"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में JSON -> TABLE एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        lite PostMan to debug REST backends or generate simple reports
HOT explore data as table: filter, sort and export desired data, send requests
install and just open DEMO urls:
   https://api.github.com/repositories/19438/commits
   https://www.w3schools.com/xml/plant_catalog.xml

NEW Features:
- row numbers, xml view fixes, install fixes
- Options
- use IndexedDB to store temporary data
- Report style
- Ctrl-Q works like Alt-TAB between Chrome TABs

Features:
- view 'application/json' response data or file as HTML table with embeded tables
- HOT on fly CSV and XLSX files can be viewed
- table filtering(mongo style allowed and embeded tables), sorting, export, totals, grouping(with totals for numeric columns), removing columns
- virtual scrolling(huge files is not problem), viewing in New window
- url query parameters parser/form editor with template(see below)
- send a JSON/FormData/urlencoded/XML requests (POST, PUT, DELETE, PATCH, GET) with headers
- scan Page TAB for XHRs and shows it on icon and opens it in PopUp
- table skins and formatting template
{
$$format: { field0: "show {$field1} like this" },
$$form: {
    check: { value: true, type:'checkbox' },
    date2: { type: 'date', label:"end Date"},
    type: { value: 2, options: ['1', '2'], required:1},
    'multi[]': { value: [22,33], options: ['11', '22', '33'], required:1},
},
...data
}

used libraries xlsx, xml2js, mongo-parse, jsoneditor, file-saver                    

एक्सटेंशन की मूल जानकारी

नाम JSON -> TABLE JSON -> TABLE
ID pjdecdkdljmchigbkalnblidepkeojda
आधिकारिक URL https://chromewebstore.google.com/detail/json-%3E-table/pjdecdkdljmchigbkalnblidepkeojda
विवरण Viewer for XLSX, JSON, XML REST responses or files as HTML table with detection nested columns and tables
फ़ाइल का आकार 313 KB
स्थापना संख्या 1,192
वर्तमान संस्करण 1.39
अंतिम अपडेट 2023-10-09
प्रकाशन तिथि 2021-03-22
रेटिंग 5.00/5 कुल 8 रेटिंग्स
डेवलपर Jes
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON -> TABLE",
    "description": "Viewer for XLSX, JSON, XML REST responses or files as HTML table with detection nested columns and tables",
    "version": "1.39",
    "manifest_version": 3,
    "permissions": [
        "webRequest",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "recent-tab": {
            "description": "Switch between Recent Tabs",
            "suggested_key": {
                "chromeos": "Ctrl+Q",
                "default": "Ctrl+Q",
                "linux": "Ctrl+Q",
                "mac": "Command+Q",
                "windows": "Ctrl+Q"
            }
        }
    },
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "json128.png"
    },
    "offline_enabled": true,
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*",
                "json128.png",
                "libs\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "contents.css",
                "dropdown.css",
                "libs\/jsoneditor\/jsoneditor.min.css",
                "skins.css"
            ],
            "all_frames": true,
            "match_about_blank": true,
            "js": [
                "options.js",
                "store.js",
                "contents.js"
            ],
            "run_at": "document_start"
        }
    ]
}