forked from EuanRiggans/BulkURLOpener-Firefox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.html
66 lines (63 loc) · 4.02 KB
/
help.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<title>Help</title>
<link href="css/bootstrap.min.css" rel="stylesheet" id="bootstrap">
<link href="css/font-awesome.min.css" rel="stylesheet" id="font-awesome">
<link href="css/style.css" rel="stylesheet" id="styles">
<link href="css/modalstyles.css" rel="stylesheet">
<link href="css/help.css" rel="stylesheet">
</head>
<body>
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Help - FAQ</h4>
<button type="button" class="close" id="closeModal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h5 class="question">Tab creation delay is not working:</h5>
<p class="answer">For tab creation delay to work correctly, the Bulk URL Opener window must be left open
until all tabs have been created, this is due to how javascript runs in browsers.</p>
<h5 class="question">Can I view the source code for this addon?</h5>
<p class="answer">Yes. The code for the Chrome, Firefox and Electron versions can be found on my github,
<a href="https://euan.link/github" target="_blank">here</a></p>
<h5 class="question">Where can I find the changelog:</h5>
<p class="answer">The changelog can be found by clicking <a href="#" id="openChangelog">here</a></p>
<h5 class="question">How can I report a bug:</h5>
<p class="answer">Bugs can be reported on this projects Github page, found <a
href="https://euan.link/buo-ff-issue" target="_blank">here</a></p>
<h5 class="question">How can I get support or suggest a feature:</h5>
<p class="answer">You can make suggestions or ask for help on this projects Github page, found <a
href="https://euan.link/buo-ff-issue" target="_blank">here</a></p>
<h5 class="question">What is an experimental feature:</h5>
<p class="answer">Many new features have been added to the extension that can not be full tested before
release. So these features are marked as experimental for a period while any usability issues or
bugs
can be identified. They have been tested to the same extend as other features prior to release but
issue
may persist due to the nature of these features. If you find any issues with these features please
report on the github issues page found above</p>
<h5 class="question">How do I edit/delete a list when automatically open lists is enabled:</h5>
<p class="answer">If you wish to edit or delete a list when you have automatically open lists enabled
you
can check the checkbox on the popup for the extension with the label 'Override Auto Open'. This will
temporarily disable the auto open setting allowing you to edit and delete saved lists.</p>
<h5 class="question">Is there is a list of known issues?</h5>
<p class="answer">Yes, there is a list of know issues in the project readme on github. Found <a
href="https://euan.link/buo-ff-issues" target="_blank">here</a></p>
</div>
<div class="modal-footer">
<small>Bulk URL Opener Firefox</small>
</div>
</div>
</div>
<script src="js/jquery-3.3.1.min.js" type="text/javascript"></script>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
<script src="js/lists.js" type="text/javascript"></script>
<script src="js/help.js" type="text/javascript"></script>
<script type="text/javascript" src="js/custom-styles.js" id="tempStylesheetLoader"></script>
</body>
</html>