-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.html
More file actions
20 lines (19 loc) · 881 Bytes
/
Copy pathsettings.html
File metadata and controls
20 lines (19 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<script src="settings.js"></script>
<body>
<h1>Settings</h1>
<p>$$$ will be the URL=encoded message-id header of the email, including its leading and trailing angle brackets</p>
<p>default URL for macOS calendar = </p>
<p>message:$$$</p>
<p>URL format for gmail search = </p>
<p>https://mail.google.com/mail/#search/in%3Aanywhere+rfc822msgid%3A$$$</p>
<form id="settingsForm">
<label for="customUrlFormat">Custom URL Format:</label>
<input type="text" id="customUrlFormat" name="customUrlFormat"
placeholder="e.g., https://mail.google.com/mail/#search/in%3Aanywhere+rfc822msgid%3A$$$" />
<br>
<input type="checkbox" id="copyToClipboard" name="copyToClipboard" checked />
Whether to copy the final link to the clipboard?
<br>
<button type="submit">Save</button>
</form>
</body>