JSONVue
Validate and view JSON documents
Vad är JSONVue?
JSONVue är en Chrome-tillägg utvecklad av gildas, och dess huvudfunktion är "Validate and view JSON documents".
Tilläggsskärmbilder
Ladda ner JSONVue-förlängningens CRX-fil
Ladda ner JSONVue-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
JSONView port for Chrome. Original firefox extension is here: http://benhollis.net/software/jsonview/ Notes: - JSON is validated using a client-side javascript implementation of JSONLint (http://github.com/zaach/jsonlint) - this extension displays JSON text compliant with rfc 4627 (http://www.ietf.org/rfc/rfc4627.txt) - The stylesheet used to display the JSON content can be customized - JSONP (http://en.wikipedia.org/wiki/JSON#JSONP) is supported
Grundläggande Information om Tillägg
Namn | JSONVue |
ID | chklaanhfefbnpoihckbnefhakgolnmc |
Officiell webbadress | https://chromewebstore.google.com/detail/jsonvue/chklaanhfefbnpoihckbnefhakgolnmc |
Beskrivning | Validate and view JSON documents |
Filstorlek | 181 KB |
Antal Installationer | 1,257,839 |
Aktuell Version | 0.2.3 |
Senast Uppdaterad | 2023-11-29 |
Publiceringsdatum | 2017-01-06 |
Betyg | 4.54/5 Totalt 2651 Betyg |
Utvecklare | gildas |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/gildas-lormeau/JSONVue |
Hjälpsida URL | https://github.com/gildas-lormeau/JSONVue/issues |
URL till Sekretesspolicy Sidan | https://github.com/gildas-lormeau/SingleFile/blob/master/privacy.md |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "JSONVue", "icons": { "16": "resources\/jsonvue16.png", "48": "resources\/jsonvue48.png", "128": "resources\/jsonvue128.png" }, "version": "0.2.3", "description": "Validate and view JSON documents", "options_ui": { "browser_style": true, "page": "options.html", "open_in_tab": false }, "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "ftp:\/\/*\/*", "file:\/\/\/*" ], "js": [ "js\/content.js" ], "run_at": "document_end", "all_frames": true } ], "permissions": [ "contextMenus", "storage" ], "manifest_version": 3 } |