Jsonfy
With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.
ما هو Jsonfy؟
Jsonfy هو إضافة Chrome تم تطويرها بواسطة Danilo Trindade، والميزة الرئيسية لها هي "With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Jsonfy
قم بتنزيل ملفات الامتداد Jsonfy بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure.
معلومات أساسية عن التمديد
الاسم | Jsonfy |
ID | dcjbeocbhehgcdckjfmkbdpkhdkpbbmn |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/jsonfy/dcjbeocbhehgcdckjfmkbdpkhdkpbbmn |
الوصف | With this chrome extension you can "beatify" your api Json with just one click. A simple way to view a formatted JSON structure. |
حجم الملف | 23.51 KB |
عدد التثبيتات | 152 |
النسخة الحالية | 1.3 |
آخر تحديث | 2017-05-12 |
تاريخ النشر | 2017-05-12 |
المطور | Danilo Trindade |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.3", "name": "Jsonfy", "description": "With this chrome extension you can \"beatify\" your api Json with just one click. A simple way to view a formatted JSON structure.", "browser_action": { "default_icon": "images\/icon-inactive-38.png", "default_title": "Jsonfy" }, "icons": { "16": "images\/icon-active-38.png", "128": "images\/icon-active.png" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "background" ], "background": { "scripts": [ "js\/actions.js", "js\/background.js" ] }, "web_accessible_resources": [ "images\/icon-active.png" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "js\/actions.js" ], "css": [ "css\/json.css" ] } ], "offline_enabled": false } |