JSON[B] Viewer

JSON[B] is a editor online web-based tool to view, edit, format, transform and diff JSON documents.

Qu'est-ce que JSON[B] Viewer ?

JSON[B] Viewer est une extension Chrome développée par https://jsonb.online, et sa fonction principale est "JSON[B] is a editor online web-based tool to view, edit, format, transform and diff JSON documents.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension JSON[B] Viewer

Téléchargez les fichiers d'extension JSON[B] Viewer 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

                        The most beautiful JSON tools that your eyes have ever seen.
It is a Chrome extension for JSON.

Notes:
* This extension might crash with other JSON highlighters/formatters, you may need to disable them
* To highlight local files and incognito tabs you have to manually enable these options on the extensions page
* Sometimes when the plugin updates chrome leaves the old background process running and revokes some options, like the access to local files. When this happen just recheck the option that everything will work again
* Works on local files (if you enable this in chrome://extensions).                    

Informations de Base sur l'Extension

Nom JSON[B] Viewer JSON[B] Viewer
ID jnhbjoikcefpmjiicnmgncglcjeefomk
URL Officiel https://chromewebstore.google.com/detail/jsonb-viewer/jnhbjoikcefpmjiicnmgncglcjeefomk
Description JSON[B] is a editor online web-based tool to view, edit, format, transform and diff JSON documents.
Taille du Fichier 17.4 KB
Nombre d'Installations 150
Version Actuelle 2.1.0
Dernière Mise à Jour 2021-09-02
Date de Publication 2021-09-02
Évaluation 5.00/5 Total 2 Évaluations
Développeur https://jsonb.online
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.jsonb.online
URL de la Page d'Aide https://www.jsonb.online
URL de la Page de Politique de Confidentialité https://www.jsonb.online/legal/privacy
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON[B] Viewer",
    "version": "2.1.0",
    "manifest_version": 2,
    "author": "JSON[B] ",
    "description": "JSON[B] is a editor online web-based tool to view, edit, format, transform and diff JSON documents.",
    "homepage_url": "https:\/\/www.jsonb.online",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "assets\/icons\/128.png",
        "32": "assets\/icons\/32.png",
        "16": "assets\/icons\/16.png"
    },
    "web_accessible_resources": [],
    "offline_enabled": true,
    "omnibox": {
        "keyword": "jsonb"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "assets\/js\/viewer.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "assets\/js\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "*:\/\/*\/*",
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'; frame-src 'self' https:\/\/www.jsonb.online"
}