JSONView

Validate and view JSON documents

Qu'est-ce que JSONView ?

JSONView est une extension Chrome développée par tomxuxu, et sa fonction principale est "Validate and view JSON documents".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension JSONView

Téléchargez les fichiers d'extension JSONView au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        浏览器打开JSON格式的API接口时,会对其进行格式化,使其更容易被阅读。
例如 https://api.pictureknow.com/api/v1/version 安装插件后就更容易阅读。                    

Informations de Base sur l'Extension

Nom JSONView JSONView
ID cgphfnglahpambfhocchajalljaeegef
URL Officiel https://chromewebstore.google.com/detail/jsonview/cgphfnglahpambfhocchajalljaeegef
Description Validate and view JSON documents
Taille du Fichier 136 KB
Nombre d'Installations 2,772
Version Actuelle 1.0.6
Dernière Mise à Jour 2023-10-17
Date de Publication 2021-05-30
Évaluation 5.00/5 Total 4 Évaluations
Développeur tomxuxu
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://pictureknow.com/protocol
Langues Prises en Charge en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_name__",
    "version": "1.0.6",
    "description": "__MSG_desc__",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/json_content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": {
        "default_icon": "icons\/icon128.png",
        "default_title": "__MSG_name__",
        "default_popup": "popup.html"
    },
    "permissions": [
        "alarms",
        "proxy",
        "management",
        "tabs",
        "storage"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "resources": [
                "css\/jsonview.css",
                "css\/jsonview_core.css",
                "css\/json_content_error.css"
            ]
        }
    ],
    "host_permissions": [
        ""
    ],
    "homepage_url": "https:\/\/www.pictureknow.com\/",
    "default_locale": "zh_CN"
}