JSONVue
Validate and view JSON documents
ما هو JSONVue؟
JSONVue هو إضافة Chrome تم تطويرها بواسطة gildas، والميزة الرئيسية لها هي "Validate and view JSON documents".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة JSONVue
قم بتنزيل ملفات الامتداد JSONVue بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة المساعدة | https://github.com/gildas-lormeau/JSONVue/issues |
عنوان صفحة سياسة الخصوصية | 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 } |