-
Notifications
You must be signed in to change notification settings - Fork 62
/
options.html
129 lines (100 loc) · 3.33 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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JavaScript Errors Notifier</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<script type="text/javascript" src="common.js"></script>
<script type="text/javascript" src="options.js"></script>
<style>
a {
font-weight: 600;
}
</style>
</head>
<body>
<h2>Global options</h2>
<div class="options" id="optionsBlock" style="white-space: nowrap">
<label>
<input type="checkbox" id="showIcon" />
Show error notification icon on all domains
</label>
<label>
<input type="checkbox" id="showPopup" />
Show popup with error details on all domains
</label>
<label>
<input type="checkbox" id="showPopupOnMouseOver" />
Show popup on notification icon mouseover
</label>
<label>
<input type="checkbox" id="showTrace" />
Show errors stack traces
</label>
<label>
<input type="checkbox" id="showColumn" />
Show errors column numbers
</label>
<label>
<input type="checkbox" id="relativeErrorUrl" />
Show relative error source URL
</label>
<label>
<input type="checkbox" id="linkStackOverflow" />
Link error text to <a href="http://stackoverflow.com" target="_blank">StackOverflow</a> search
</label>
<label>
<input type="checkbox" id="linkViewSource" />
Link error source to <a href="view-source:http://localhost/js_errors.html" target="_blank">view-source:</a>
</label>
<label>
<input type="checkbox" id="ignoreExternal" />
Ignore external domains errors (AdBlock & etc)
</label>
<label>
<input type="checkbox" id="ignoreBlockedByClient" />
Ignore net::ERR_BLOCKED_BY_CLIENT (AdBlock & etc)
</label>
<label>
<input type="checkbox" id="ignoreConnectionRefused" />
Ignore net::ERR_CONNECTION_REFUSED
</label>
<label>
<input type="checkbox" id="ignore404js" />
Ignore missing .js files error
</label>
<label>
<input type="checkbox" id="ignore404css" />
Ignore missing .css files error
</label>
<label>
<input type="checkbox" id="ignore404others" />
Ignore missing images & etc files error
</label>
<p>
<label>
<input type="text" id="popupMaxWidth" maxlength="2" size="2" value="80" class="size" />% - maximum popup width
</label>
</p>
<p>
<label>
<input type="text" id="popupMaxHeight" maxlength="2" size="2" value="80" class="size" />% - maximum popup height
</label>
</p>
<div style="margin-top: 10px;">
* Contribute to source code or request new feature on <a href="https://github.com/barbushin/javascript-errors-notifier" target="_blank">GitHub</a><br />
* Share this extension with your friends on
<a href="https://www.facebook.com/sharer/sharer.php?u=https%3A//goo.gl/sU4lPG" target="_blank">Facebook</a>,
<a href="https://twitter.com/home?status=Be%20sure%20about%20website%20stability%20with%20Google%20Chrome%20extension%20-%20JavaScript%20Errors%20Notifier%20https%3A//goo.gl/sU4lPG" target="_blank">Twitter</a> or
<a href="https://plus.google.com/share?url=https%3A//goo.gl/sU4lPG" target="_blank">G+</a>
<br />
<div id="recommendation">
* Rate this extension on Google WebStore: <strong> <a href="http://goo.gl/rIjsXk" target="_blank" id="openRecommendation">Yes</a> / <a href="#" id="hideRecommendation">No</a></strong>
</div>
</div>
<div class="buttonsBlock">
<a href="#x" id="close" title="Close"><img src="img/close.png" /></a>
</div>
</div>
</body>
</html>