-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
22 lines (20 loc) · 912 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="UTF-8">
<title>Alfred Snippet Generator</title>
<meta name="description" content="Generate .alfredsnippets files by pasting .tsv content (i.e. from Google Sheets or Excel) into a textarea">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" type="text/css" href="assets/style.css">
</head>
<body>
<textarea id="tsv" placeholder="Alfred Snippet Generator
Paste tab-separated content here 📋 and your .alfredsnippets file will generate and download 📄💥
(You can copy tab-separated content directly from Google Sheets or Excel! 🤯)
Use these columns:
1️⃣ Keyword(s): e.g. 'fox' or 'fox,foxface,fox face' (required)
2️⃣ Snippet: e.g. '🦊' (required)
3️⃣ Name: e.g. 'Fox Face' (optional)"></textarea>
<script src="dist/bundle.js"></script>
</body>
</html>