-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
34 lines (32 loc) · 1.16 KB
/
options.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<style type="text/css">
body { margin: 25px 50px 50px 50px; min-width: 750px; }
</style>
<title>Asana Navigator Options</title>
</head>
<body style="font-family: Sans-serif; font-size: 100%;">
<h2>Show items</h2>
<div>
<input type="checkbox" id="subtasks"> Show links to sibling subtasks
</div>
<h2>Additional actions</h2>
<div>
<input type="checkbox" id="description"> Replace text in task description (Tab+E)
</div>
<div>
<input type="checkbox" id="debug"> Enable debug mode (print not-found DOM elements in console)
</div>
<br/>
<div>
<button id="save">Save settings</button>
<span id="status"></span>
</div>
<script src="options.js" type="application/javascript"></script>
<h2>Donation</h2>
<p>Thank you for using Asana Navigator! If you like this extension, I'd appreciate it if you could support me <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3HR8HJMD84LMC&source=url" rel="noopener noreferrer" target="_blank">through PayPal</a> with any price you set.<br />
I'll use it for buying books to learn more about programming and create better tools.</p>
</body>
</html>