-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoptions.html
More file actions
108 lines (103 loc) · 3.29 KB
/
options.html
File metadata and controls
108 lines (103 loc) · 3.29 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<style>
body {
padding: 20px;
}
label {
display: block;
width: 800px;
padding: 0 0 20px;
}
textarea {
width: 100%;
height: 150px;
}
</style>
</head>
<body>
<h1>CES Settings</h1>
<span style="font-style: italic">
Har du problem, idéer eller annat så skicka ett mail till
<a href="mailto:lundgrenextension@gmail.com">lundgrenextension@gmail.com</a>
<br />
<br />
</span>
<label>
<input type="checkbox" id="comments_read_on_page_load" />
<span>All comments are marked as read on page load</span>
</label>
<label>
<input type="checkbox" id="hide_first_visit" />
<span>Hide highlights on unseen comments & content on first visit to article</span>
</label>
<label>
<input type="checkbox" id="highlight_paragraphs" />
<span>Highlight new and updated content in the article</span>
</label>
<label>
<input type="checkbox" id="highlight_admin" />
<span>Highlight comments from admin/author</span>
</label>
<label>
<input type="checkbox" id="favorite_me" />
<span>Mark my own comments as favorites</span>
</label>
<label>
<input type="checkbox" id="auto_hide_default" />
<span>Automatically minimize threads without unread comments</span>
</label>
<label>
<input type="checkbox" id="jump_first_unread" />
<span>Automatically jump to the first unread paragraph or comment when reloading a page</span>
</label>
<label>
<input type="checkbox" id="rewrite_twitter_links" />
<span>Rewrite Twitter links to use</span>
<input type="text" id="rewrite_twitter_domain" placeholder="nitter.net" />
<span> instead</span>
</label>
<label>
<input type="checkbox" id="force_open_new_tab" />
<span>Open article & comment links in a new tab</span>
</label>
<label>
<input type="text" id="color_paragraphs" />
<span>Color for new content</span>
</label>
<label>
<input type="text" id="color_comments" />
<span>Color for new comments</span>
</label>
<label>
<input type="text" id="color_favorites" />
<span>Color for favorite comments</span>
</label>
<label>
<input type="text" id="color_navigation" />
<span>Color for navigated comments</span>
</label>
<label>
<span> Highlight new comments containing any of these words, one word or phrase per row</span>
<br />
<span style="font-style: italic">
Tip: Write your own username to find comments mentioning you
</span>
<br />
<textarea id="favorite_words"></textarea>
</label>
<label>
<span> Highlight new comments from these users as favorites, one username per row</span><br />
<textarea id="favorite_authors"></textarea>
</label>
<label>
<span>Hide new comments from these users, one username per row</span><br />
<textarea id="hidden_authors"></textarea>
</label>
<input type="button" id="save" value="Save" style="min-width: 100px" />
<div id="status_saved" style="display: none; color: green; padding-left: 5px"></div>
<script src="options.js"></script>
</body>
</html>