JSON-handle
It's a browser and editor for JSON document.You can get a beautiful view
Vad är JSON-handle?
JSON-handle är en Chrome-tillägg utvecklad av https://jsonhandle.sinaapp.com, och dess huvudfunktion är "It's a browser and editor for JSON document.You can get a beautiful view".
Tilläggsskärmbilder
Ladda ner JSON-handle-förlängningens CRX-fil
Ladda ner JSON-handle-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
对JSON格式的内容进行浏览和编辑,以树形图样式展现JSON文档,并可实时编辑。
Edit and browse JSON document in a node tree diagram.
After installed, open the URL will trigger JSON-handle:
安装后打开下面网址可以看到JSON-handle启动的效果:
http://jsonhandle.sinaapp.com/demo.json Grundläggande Information om Tillägg
| Namn | |
| ID | iahnhfdhidomcpggpaimmmahffihkfnj |
| Officiell webbadress | https://chromewebstore.google.com/detail/json-handle/iahnhfdhidomcpggpaimmmahffihkfnj |
| Beskrivning | It's a browser and editor for JSON document.You can get a beautiful view |
| Filstorlek | 193 KB |
| Antal Installationer | 207,603 |
| Aktuell Version | 0.6.2 |
| Senast Uppdaterad | 2021-12-22 |
| Publiceringsdatum | 2020-03-11 |
| Betyg | 4.79/5 Totalt 442 Betyg |
| Utvecklare | https://jsonhandle.sinaapp.com |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | http://jsonhandle.sinaapp.com/ |
| Hjälpsida URL | http://jsonhandle.sinaapp.com/ |
| URL till Sekretesspolicy Sidan | https://jsonhandle.sinaapp.com |
| Stödda Språk | en,zh-CN,zh-TW |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "JSON-handle",
"version": "0.6.2",
"icons": {
"16": "logo16.png",
"48": "logo48.png",
"128": "logo128.png"
},
"description": "It's a browser and editor for JSON document.You can get a beautiful view",
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"ftp:\/\/*\/*",
"file:\/\/*",
"file:\/\/\/*"
],
"js": [
"content_scripts.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"browser_action": {
"default_title": "JSON-handle",
"default_icon": "logo16.png"
},
"options_page": "options.html",
"web_accessible_resources": [
"JSON-handle\/JSON-handle.html",
"options.html"
],
"offline_enabled": true,
"permissions": [
"contextMenus",
"webRequest",
"tabs",
" | |