-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (67 loc) · 4.63 KB
/
index.html
File metadata and controls
75 lines (67 loc) · 4.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" id="favicon" type="image/png" sizes="128x128" href="/favicon.png" />
<link rel="apple-touch-icon" href="/favicon.png" />
<script>
(function() {
const stored = localStorage.getItem('ui-theme');
const theme = stored || 'light';
const favicon = document.getElementById('favicon');
function updateFavicon(currentTheme) {
let effectiveTheme = currentTheme;
if (currentTheme === 'system') {
effectiveTheme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
}
// Use favicon.png for all themes
favicon.href = '/favicon.png';
}
updateFavicon(theme);
if (theme === 'system') {
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', () => {
updateFavicon('system');
});
}
})();
</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TryDevUtils - Essential Developer Utilities | Web, Desktop App & Chrome Extension</title>
<meta name="description" content="Free open source developer utilities for JWT decoding, encoding, JSON formatting, validation, and UUID generation, Base64 converter, Timestamp/date converter, Text diff, Cron parser, Colour converter, Hash generator, Yaml validator. Available as a web app and desktop app for macOS, Windows, and Linux. All processing happens locally — no data leaves your device." />
<meta name="author" content="TryDevUtils" />
<meta name="keywords" content="developer tools, dev utilities, JWT decoder, JSON formatter, Base64 converter, UUID generator, hash generator, cron parser, desktop app, macOS, Windows, Linux, open source, privacy, offline" />
<meta property="og:title" content="TryDevUtils - Essential Developer Utilities | Web, Desktop App & Chrome Extension" />
<meta property="og:description" content="Free open source developer utilities for JWT decoding, encoding, JSON formatting, validation, and UUID generation, Base64 converter, Timestamp/date converter, Text diff, Cron parser, Colour converter, Hash generator, Yaml validator. Available as a web app and desktop app for macOS, Windows, and Linux. All processing happens locally — no data leaves your device." />
<meta property="og:type" content="website" />
<meta property="og:image" content="/og_trydevutils.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:title" content="TryDevUtils - Essential Developer Utilities | Web, Desktop App & Chrome Extension" />
<meta name="twitter:description" content="Free open source developer utilities for JWT decoding, encoding, JSON formatting, validation, and UUID generation, Base64 converter, Timestamp/date converter, Text diff, Cron parser, Colour converter, Hash generator, Yaml validator. Available as a web app and desktop app for macOS, Windows, and Linux. All processing happens locally — no data leaves your device." />
<meta name="twitter:image" content="/og_trydevutils.png" />
<link rel="canonical" href="https://www.trydevutils.com/" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "TryDevUtils",
"url": "https://www.trydevutils.com",
"description": "Free open source developer utilities — JWT decoder, JSON formatter, Base64 converter, UUID generator, Hash generator, Cron parser, and more. Available as a web app and native desktop app for macOS, Windows, and Linux. All processing happens locally.",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Web, macOS, Windows, Linux",
"license": "https://opensource.org/licenses/MIT",
"softwareHelp": {
"@type": "WebPage",
"url": "https://github.com/gammabowl/try-devutils"
},
"downloadUrl": "https://github.com/gammabowl/try-devutils/releases",
"screenshot": "https://www.trydevutils.com/og_trydevutils.png",
"featureList": "JWT Decoder, JSON Formatter, Base64 Converter, UUID Generator, Hash Generator, Cron Parser, Regex Tester, SQL Formatter, YAML Validator, URL Encoder, Timestamp Converter, Text Diff, Colour Converter, Markdown Preview, Key Pair Generator, SSL Certificate Decoder, HTTP Status Codes, MIME Type Lookup, Zlib Compressor, Number Base Converter, String Analyser",
"isAccessibleForFree": true
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>