Seven JSON Viewer
Minimal JSON Viewer with JSON Path
Qu'est-ce que Seven JSON Viewer ?
Seven JSON Viewer est une extension Chrome développée par https://reez.dev, et sa fonction principale est "Minimal JSON Viewer with JSON Path".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Seven JSON Viewer
Téléchargez les fichiers d'extension Seven JSON 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
Minimal JSON Viewer with JSON Path Support. Features -------------- 1. Syntax Highlighting 2. Collapsible tree for improved readability 3. Dark themed 4. Realtime JSON Path support 5. Multiple Themes Note: This extension might have conflict with other JSON highlighters/beautifiers, like 'JSON Formatter', 'JSONView', 'Pretty JSON' and so on – Please, disable those before trying this for better experience.
Informations de Base sur l'Extension
Nom | Seven JSON Viewer |
ID | cfahdpkjihoomfomffdbmamapgdpohoe |
URL Officiel | https://chromewebstore.google.com/detail/seven-json-viewer/cfahdpkjihoomfomffdbmamapgdpohoe |
Description | Minimal JSON Viewer with JSON Path |
Taille du Fichier | 228 KB |
Nombre d'Installations | 3,163 |
Version Actuelle | 5.0 |
Dernière Mise à Jour | 2022-07-27 |
Date de Publication | 2020-03-17 |
Évaluation | 4.50/5 Total 8 Évaluations |
Développeur | https://reez.dev |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://reez.dev/project/seven-json-viewer |
URL de la Page d'Aide | https://reez.dev/project/seven-json-viewer#support |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Seven JSON Viewer", "description": "Minimal JSON Viewer with JSON Path", "short_name": "JSON Viewer", "version": "5.0", "offline_enabled": true, "manifest_version": 3, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "main.js" ], "run_at": "document_start", "all_frames": true } ], "content_security_policy": { "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'none';" }, "permissions": [ "storage" ], "icons": { "16": "assets\/icon-16.png", "48": "assets\/icon-48.png", "128": "assets\/icon-128.png", "512": "assets\/icon-512.png" }, "action": { "default_popup": "popup.html" } } |