jsonv
JSON viewer
Wat is jsonv?
jsonv is een Chrome-extensie ontwikkeld door https://kganser.com, en de belangrijkste functie is "JSON viewer".
Extensie Screenshots
Download het CRX-bestand van de extensie jsonv
Download jsonv-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Jsonv formats JSON files for easy viewing in Chrome. Features: • Collapsible objects and arrays • Inspector-style colors • Console access via `json` variable • Clickable links
Basisinformatie over de Extensie
Naam | jsonv |
ID | cgffjielkgfdhoiloknkfcimejepaodg |
Officiële URL | https://chromewebstore.google.com/detail/jsonv/cgffjielkgfdhoiloknkfcimejepaodg |
Beschrijving | JSON viewer |
Bestandsgrootte | 12.7 KB |
Aantal Installaties | 272 |
Huidige Versie | 0.12 |
Laatst Bijgewerkt | 2022-05-02 |
Publicatiedatum | 2018-03-04 |
Beoordeling | 5.00/5 Totaal 4 Beoordelingen |
Ontwikkelaar | https://kganser.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://jsonv.kganser.com |
URL van de Privacybeleid Pagina | https://raw.githubusercontent.com/kganser/jsonv/master/privacy.txt |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "jsonv", "description": "JSON viewer", "offline_enabled": true, "icons": { "128": "jsonv128.png", "48": "jsonv48.png", "16": "jsonv16.png" }, "version": "0.12", "permissions": [ "http:\/\/*\/", "https:\/\/*\/", "ftp:\/\/*\/" ], "web_accessible_resources": [ "jsonv.css" ], "background": { "scripts": [ "jsonv.js" ] }, "content_scripts": [ { "all_frames": true, "js": [ "jsonv.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "ftp:\/\/*\/*", "file:\/\/\/*" ], "run_at": "document_end" } ] } |