-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
49 lines (44 loc) · 2.01 KB
/
options.html
File metadata and controls
49 lines (44 loc) · 2.01 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
<!DOCTYPE html>
<html>
<head>
<title>ABS Options</title>
<link rel="stylesheet" type="text/css" href="options.css"></link>
</head>
<body>
<script type="text/javascript" src="https://cdnjs.buymeacoffee.com/1.0.0/button.prod.min.js" data-name="bmc-button" data-slug="mikeyaworski" data-color="#79D6B5" data-emoji="" data-font="Cookie" data-text="Buy me a coffee" data-outline-color="#000" data-font-color="#fff" data-coffee-color="#fd0"></script>
<div class="btc-code" title="Bitcoin Address">3Cc3CmCbyzMu8g8zZSxAdRJydAyURGrWH7</div>
<hr>
<div>Queries (one per line):</div>
<textarea id="custom-queries" rows="5"></textarea>
<div>
Specify which queries to include when searching:
<div class="option-wrapper">
<label><input id="search-with-custom-queries" type="checkbox" /> Custom Queries (above)</label>
</div>
<div class="option-wrapper">
<label><input id="search-with-daily-trends" type="checkbox" /> Google Daily Trends</label>
</div>
<div class="option-wrapper">
<label><input id="search-with-templates" type="checkbox" /> Random Autogenerated Queries</label>
</div>
</div>
<hr>
<div class="option-wrapper">
<label><input id="random-letters-search" type="checkbox" /> Search with random letters</label>
</div>
<hr>
<div>Scheduling</div>
<div class="text-secondary">As long as your browser is open, it will attempt to open a new tab and run searches at the specified time every day.</div>
<input type="time" id="scheduled-time" />
<div class="option-wrapper">
<label><input id="schedule-daily-searches" type="checkbox" /> Do scheduled searches</label>
</div>
<div class="option-wrapper">
<label><input id="scheduled-time-open-reward-tasks" type="checkbox" /> Open reward tasks on schedule</label>
</div>
<script src="constants.js"></script>
<script src="utils.js"></script>
<script src="chrome-utils.js"></script>
<script src="options.js"></script>
</body>
</html>