-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (82 loc) · 4.25 KB
/
index.html
File metadata and controls
87 lines (82 loc) · 4.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>JSON Mapper - Free Online JSON Viewer, Editor & Path Extractor | JMESPath & JSONPath</title>
<meta name="title" content="JSON Mapper - Free Online JSON Viewer, Editor & Path Extractor | JMESPath & JSONPath" />
<meta name="description" content="Free online JSON viewer and editor with tree view, search, bookmarks, and path extraction. Supports JMESPath, JSONPath, JavaScript, and Python. Export to YAML, XML, CSV. Perfect for developers working with APIs and nested JSON data." />
<meta name="keywords" content="JSON viewer, JSON editor, JSON formatter, JMESPath, JSONPath, JSON tree view, JSON path extractor, JSON to YAML, JSON to XML, JSON to CSV, API testing tool, JSON validator, JSON beautifier, online JSON tool, free JSON viewer" />
<meta name="author" content="Aleks Aperans" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://jsonmapper.dev/" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://jsonmapper.dev/" />
<meta property="og:site_name" content="JSON Mapper" />
<meta property="og:title" content="JSON Mapper - Free Online JSON Viewer & Path Extractor" />
<meta property="og:description" content="Free online JSON viewer and editor with tree view, search, bookmarks, and path extraction. Supports JMESPath, JSONPath, JavaScript, and Python. Export to YAML, XML, CSV." />
<meta property="og:image" content="https://jsonmapper.dev/json-mapper2.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://jsonmapper.dev/" />
<meta property="twitter:title" content="JSON Mapper - Free Online JSON Viewer & Path Extractor" />
<meta property="twitter:description" content="Free online JSON viewer and editor with tree view, search, bookmarks, and path extraction. Supports JMESPath, JSONPath, JavaScript, and Python." />
<meta property="twitter:image" content="https://jsonmapper.dev/json-mapper2.png" />
<!-- Additional SEO -->
<meta name="theme-color" content="#000000" />
<meta name="application-name" content="JSON Mapper" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="JSON Mapper" />
<!-- Structured Data (Schema.org) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "JSON Mapper",
"url": "https://jsonmapper.dev",
"description": "Free online JSON viewer and editor with tree view, search, bookmarks, and path extraction. Supports JMESPath, JSONPath, JavaScript, and Python path formats.",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Any",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": {
"@type": "Person",
"name": "Aleks Aperans",
"url": "https://aleksaperans.me"
},
"featureList": [
"Tree and JSON text views",
"Smart search and filter",
"Bookmarks with notes",
"JMESPath support",
"JSONPath support",
"JavaScript path format",
"Python path format",
"Export to YAML",
"Export to XML",
"Export to CSV",
"Large file support",
"Keyboard shortcuts",
"Dark mode"
]
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>