Uh oh!
There was an error while loading. Please reload this page.
forked from barbushin/javascript-errors-notifier
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
Latest commit
129 lines (100 loc) · 3.33 KB
/
Copy pathoptions.html
File metadata and controls
129 lines (100 loc) · 3.33 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
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>
<htmllang="en">
<head>
<metacharset="UTF-8">
<title>JavaScript Errors Notifier</title>
<linkrel="stylesheet" type="text/css" href="styles.css">
<scripttype="text/javascript" src="common.js"></script>
<scripttype="text/javascript" src="options.js"></script>
<style>
a {
font-weight:600;
}
</style>
</head>
<body>
<h2>Global options</h2>
<divclass="options" id="optionsBlock" style="white-space: nowrap">
<label>
<inputtype="checkbox" id="showIcon" />
Show error notification icon on all domains
</label>
<label>
<inputtype="checkbox" id="showPopup" />
Show popup with error details on all domains
</label>
<label>
<inputtype="checkbox" id="showPopupOnMouseOver" />
Show popup on notification icon mouseover
</label>
<label>
<inputtype="checkbox" id="showTrace" />
Show errors stack traces
</label>
<label>
<inputtype="checkbox" id="showColumn" />
Show errors column numbers
</label>
<label>
<inputtype="checkbox" id="relativeErrorUrl" />
Show relative error source URL
</label>
<label>
<inputtype="checkbox" id="linkStackOverflow" />
Link error text to <ahref="http://stackoverflow.com" target="_blank">StackOverflow</a> search
</label>
<label>
<inputtype="checkbox" id="linkViewSource" />
Link error source to <ahref="view-source:http://localhost/js_errors.html" target="_blank">view-source:</a>
</label>
<label>
<inputtype="checkbox" id="ignoreExternal" />
Ignore external domains errors (AdBlock & etc)
</label>
<label>
<inputtype="checkbox" id="ignoreBlockedByClient" />
Ignore net::ERR_BLOCKED_BY_CLIENT (AdBlock & etc)
</label>
<label>
<inputtype="checkbox" id="ignoreConnectionRefused" />
Ignore net::ERR_CONNECTION_REFUSED
</label>
<label>
<inputtype="checkbox" id="ignore404js" />
Ignore missing .js files error
</label>
<label>
<inputtype="checkbox" id="ignore404css" />
Ignore missing .css files error
</label>
<label>
<inputtype="checkbox" id="ignore404others" />
Ignore missing images & etc files error
</label>
<p>
<label>
<inputtype="text" id="popupMaxWidth" maxlength="2" size="2" value="80" class="size" />% - maximum popup width
</label>
</p>
<p>
<label>
<inputtype="text" id="popupMaxHeight" maxlength="2" size="2" value="80" class="size" />% - maximum popup height
</label>
</p>
<divstyle="margin-top: 10px;">
* Contribute to source code or request new feature on <ahref="https://github.com/barbushin/javascript-errors-notifier" target="_blank">GitHub</a><br/>
* Share this extension with your friends on
<ahref="https://www.facebook.com/sharer/sharer.php?u=https%3A//goo.gl/sU4lPG" target="_blank">Facebook</a>,
<ahref="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
<ahref="https://plus.google.com/share?url=https%3A//goo.gl/sU4lPG" target="_blank">G+</a>
<br/>
<divid="recommendation">
* Rate this extension on Google WebStore: <strong><ahref="http://goo.gl/rIjsXk" target="_blank" id="openRecommendation">Yes</a> / <ahref="#" id="hideRecommendation">No</a></strong>
</div>
</div>
<divclass="buttonsBlock">
<ahref="#x" id="close" title="Close"><imgsrc="img/close.png" /></a>
</div>
</div>
</body>
</html>