JSONVue
Validate and view JSON documents
JSONVue क्या है?
JSONVue gildas द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Validate and view JSON documents"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में JSONVue एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | JSONVue |
ID | chklaanhfefbnpoihckbnefhakgolnmc |
आधिकारिक URL | https://chromewebstore.google.com/detail/jsonvue/chklaanhfefbnpoihckbnefhakgolnmc |
विवरण | Validate and view JSON documents |
फ़ाइल का आकार | 181 KB |
स्थापना संख्या | 1,257,839 |
वर्तमान संस्करण | 0.2.3 |
अंतिम अपडेट | 2023-11-29 |
प्रकाशन तिथि | 2017-01-06 |
रेटिंग | 4.54/5 कुल 2651 रेटिंग्स |
डेवलपर | gildas |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/gildas-lormeau/JSONVue |
सहायता पृष्ठ URL | https://github.com/gildas-lormeau/JSONVue/issues |
गोपनीयता नीति पृष्ठ URL | https://github.com/gildas-lormeau/SingleFile/blob/master/privacy.md |
समर्थित भाषाएँ | 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 } |