-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (95 loc) · 5.17 KB
/
index.html
File metadata and controls
101 lines (95 loc) · 5.17 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- =====================================================================
PRIMARY SEO
====================================================================== -->
<title>KoBup — Free Kobo Backup Tool | Backup Your Kobo Library Online</title>
<meta name="description" content="KoBup is the free, privacy-first tool to backup and restore your Kobo e-reader library. Back up books, highlights, annotations and reading progress — 100% in your browser, no upload, no account." />
<meta name="keywords" content="kobo backup, backup kobo, kobo library backup, kobo ebook backup, kobo reading progress backup, kobo highlights backup, kobo backup tool, kobo backup online, free kobo backup, kobup, backup kobo device, restore kobo library, kobo annotations backup, sideloaded books backup" />
<link rel="canonical" href="https://www.kobup.org/" />
<meta name="robots" content="index, follow" />
<meta name="author" content="KoBup" />
<!-- =====================================================================
OPEN GRAPH (Facebook, LinkedIn, WhatsApp, Discord)
====================================================================== -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.kobup.org/" />
<meta property="og:title" content="KoBup — Free Kobo Backup Tool" />
<meta property="og:description" content="Back up your entire Kobo library in minutes — books, highlights, annotations, reading progress. 100% private, runs in your browser, no account needed." />
<meta property="og:image" content="https://www.kobup.org/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="KoBup — Free Kobo Backup Tool" />
<meta property="og:site_name" content="KoBup" />
<meta property="og:locale" content="en_US" />
<!-- =====================================================================
TWITTER / X CARD
====================================================================== -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://www.kobup.org/" />
<meta name="twitter:title" content="KoBup — Free Kobo Backup Tool" />
<meta name="twitter:description" content="Back up your entire Kobo library in minutes — books, highlights, annotations, reading progress. 100% private, runs in your browser." />
<meta name="twitter:image" content="https://www.kobup.org/og-image.png" />
<!-- =====================================================================
JSON-LD STRUCTURED DATA
====================================================================== -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "KoBup",
"alternateName": "Kobo Backup Manager",
"url": "https://www.kobup.org/",
"description": "Free, privacy-first web tool to backup and restore your Kobo e-reader library. Back up books, highlights, annotations and reading progress entirely in your browser.",
"applicationCategory": "UtilitiesApplication",
"operatingSystem": "Chrome, Edge",
"browserRequirements": "Chrome 86+, Edge 86+",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"Backup Kobo library to ZIP file",
"Restore Kobo library from backup",
"Backup sideloaded ebooks (EPUB, PDF)",
"Backup Kobo reading progress",
"Backup Kobo highlights and annotations",
"Database-only backup mode",
"Streaming ZIP engine — handles 4 GB+ libraries",
"100% local processing — no uploads",
"No account required"
],
"screenshot": "https://www.kobup.org/og-image.png",
"softwareVersion": "1.1",
"license": "https://opensource.org/licenses/MIT",
"isAccessibleForFree": true,
"creator": {
"@type": "Person",
"name": "Fanfulla"
},
"sameAs": [
"https://github.com/Fanfulla/KoboOfflineBackup"
]
}
</script>
<!-- =====================================================================
ICONS & MANIFEST
====================================================================== -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="alternate icon" href="/favicon.ico" />
<!-- =====================================================================
FONTS
====================================================================== -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Poppins:wght@400;500;600&display=swap" rel="stylesheet">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>