Skip to content

Commit 5f6cead

Browse files
seo
1 parent bbd669a commit 5f6cead

File tree

2 files changed

+125
-34
lines changed

2 files changed

+125
-34
lines changed

index.html

Lines changed: 113 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,68 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
7+
<!-- SEO Meta Tags -->
8+
<meta
9+
name="description"
10+
content="Download VSIX files directly from Visual Studio Code Marketplace. Fast, free, and easy-to-use tool for VS Code extension downloading without requiring the VS Code editor."
11+
/>
12+
<meta
13+
name="keywords"
14+
content="VSIX downloader, VS Code extensions, Visual Studio Code, download extensions, VSIX files, VS Code marketplace, offline installation"
15+
/>
16+
<meta name="author" content="CypherpunkSamurai" />
17+
<meta name="robots" content="index, follow" />
18+
19+
<!-- Open Graph / Social Media Meta Tags -->
20+
<meta
21+
property="og:title"
22+
content="VSIX Downloader - Download Visual Studio Code Extensions Easily"
23+
/>
24+
<meta
25+
property="og:description"
26+
content="Free tool to download VSIX files directly from the VS Code Marketplace. Get your favorite VS Code extensions for offline installation."
27+
/>
28+
<meta property="og:type" content="website" />
29+
<meta
30+
property="og:url"
31+
content="https://cypherpunksamurai.github.io/vsix-downloader-webui/"
32+
/>
33+
<meta
34+
property="og:image"
35+
content="https://cypherpunksamurai.github.io/vsix-downloader-webui/web-app-manifest-512x512.png"
36+
/>
37+
38+
<!-- Twitter Card Meta Tags -->
39+
<meta name="twitter:card" content="summary_large_image" />
40+
<meta
41+
name="twitter:title"
42+
content="VSIX Downloader - Download Visual Studio Code Extensions Easily"
43+
/>
44+
<meta
45+
name="twitter:description"
46+
content="Free tool to download VSIX files directly from the VS Code Marketplace. Get your favorite VS Code extensions for offline installation."
47+
/>
48+
<meta
49+
name="twitter:image"
50+
content="https://cypherpunksamurai.github.io/vsix-downloader-webui/web-app-manifest-512x512.png"
51+
/>
52+
53+
<!-- Canonical URL -->
54+
<link
55+
rel="canonical"
56+
href="https://cypherpunksamurai.github.io/vsix-downloader-webui/"
57+
/>
58+
659
<link rel="icon" type="image/png" href="favicon-96x96.png?" sizes="96x96" />
760
<link rel="icon" type="image/svg+xml" href="favicon.svg?" />
861
<link rel="shortcut icon" href="favicon.ico?" />
962
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png?" />
1063
<link rel="manifest" href="site.webmanifest?" />
11-
<title>Visual Studio Code Extension Marketplace VSIX Downloader</title>
64+
<title>
65+
VSIX Downloader - Download Visual Studio Code Extensions | Free Online
66+
Tool
67+
</title>
1268
<script src="https://cdn.tailwindcss.com"></script>
1369
<script>
1470
tailwind.config = {
@@ -102,38 +158,68 @@
102158
}
103159

104160
50% {
105-
opacity: 1;
161+
opacity: 0.8;
106162
}
107163
}
164+
</style>
108165

109-
/* Scrollbar styling */
110-
::-webkit-scrollbar {
111-
width: 8px;
112-
}
113-
114-
::-webkit-scrollbar-track {
115-
background: rgba(0, 0, 0, 0.1);
116-
}
117-
118-
::-webkit-scrollbar-thumb {
119-
background: rgba(255, 255, 255, 0.2);
120-
border-radius: 4px;
121-
}
122-
123-
::-webkit-scrollbar-thumb:hover {
124-
background: rgba(255, 255, 255, 0.3);
125-
}
126-
127-
@keyframes spin {
128-
to {
129-
transform: rotate(360deg);
166+
<!-- Schema.org structured data -->
167+
<script type="application/ld+json">
168+
{
169+
"@context": "https://schema.org",
170+
"@type": "WebApplication",
171+
"name": "VSIX Downloader for VS Code Extensions",
172+
"headline": "Download VS Code Extensions as VSIX Files",
173+
"description": "Download any Visual Studio Code extension as VSIX file. Easily save extensions from the VS Code Marketplace for offline installation, air-gapped environments, or version control. Fast, free, and easy to use with no installation required.",
174+
"operatingSystem": "All",
175+
"applicationCategory": "DeveloperApplication",
176+
"keywords": "vsix downloader, vs code extension download, visual studio code marketplace, vsix file, vscode extensions offline",
177+
"offers": {
178+
"@type": "Offer",
179+
"price": "0",
180+
"priceCurrency": "USD"
181+
},
182+
"url": "https://cypherpunksamurai.github.io/vsix-downloader-webui/",
183+
"author": {
184+
"@type": "Organization",
185+
"name": "CypherpunkSamurai"
186+
},
187+
"potentialAction": {
188+
"@type": "SearchAction",
189+
"target": {
190+
"@type": "EntryPoint",
191+
"urlTemplate": "https://cypherpunksamurai.github.io/vsix-downloader-webui/?q={search_term_string}"
192+
},
193+
"query-input": "required name=search_term_string"
130194
}
131195
}
132-
133-
.spinner {
134-
animation: spin 1s linear infinite;
196+
</script>
197+
<script type="application/ld+json">
198+
{
199+
"@context": "https://schema.org",
200+
"@type": "WebApplication",
201+
"name": "VSIX Downloader for Visual Studio Code Extensions",
202+
"url": "https://cypherpunksamurai.github.io/vsix-downloader-webui/",
203+
"description": "A free online tool to download VSIX files directly from the Visual Studio Code Marketplace for offline installation.",
204+
"applicationCategory": "DeveloperApplication",
205+
"operatingSystem": "All",
206+
"offers": {
207+
"@type": "Offer",
208+
"price": "0",
209+
"priceCurrency": "USD"
210+
},
211+
"author": {
212+
"@type": "Person",
213+
"name": "CypherpunkSamurai",
214+
"url": "https://github.com/CypherpunkSamurai"
215+
},
216+
"softwareHelp": {
217+
"@type": "CreativeWork",
218+
"url": "https://github.com/CypherpunkSamurai/vsix-downloader-webui/blob/main/README.md"
219+
},
220+
"keywords": "vsix downloader, vs code extension download, visual studio code marketplace, vsix file, vscode extensions, download vsix, offline vscode extensions, vscode extension download, vscode marketplace download, install vsix offline"
135221
}
136-
</style>
222+
</script>
137223
</head>
138224

139225
<body class="h-screen flex items-center justify-center bg-black">

site.webmanifest

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,26 @@
11
{
2-
"name": "MyWebSite",
3-
"short_name": "MySite",
2+
"name": "VSIX Downloader for Visual Studio Code Extensions",
3+
"short_name": "VSIX Downloader",
4+
"description": "Download VSIX files directly from the VS Code Marketplace for offline installation",
5+
"start_url": "/",
46
"icons": [
57
{
68
"src": "/web-app-manifest-192x192.png",
79
"sizes": "192x192",
810
"type": "image/png",
9-
"purpose": "maskable"
11+
"purpose": "maskable any"
1012
},
1113
{
1214
"src": "/web-app-manifest-512x512.png",
1315
"sizes": "512x512",
1416
"type": "image/png",
15-
"purpose": "maskable"
17+
"purpose": "maskable any"
1618
}
1719
],
18-
"theme_color": "#ffffff",
19-
"background_color": "#ffffff",
20-
"display": "standalone"
20+
"theme_color": "#0A84FF",
21+
"background_color": "#1c1c1e",
22+
"display": "standalone",
23+
"orientation": "portrait",
24+
"categories": ["developer tools", "utilities"],
25+
"lang": "en-US"
2126
}

0 commit comments

Comments
 (0)