-
Notifications
You must be signed in to change notification settings - Fork 5
/
rpt.html
101 lines (83 loc) · 2.81 KB
/
rpt.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
<!DOCTYPE html>
<html>
<head>
<title>Reddit Pro Tools</title>
<link rel="stylesheet" href="styles.css">
<script src="jquery-3.3.1.min.js"></script>
<script src="settings.js"></script>
<script src="popup.js"></script>
</head>
<body>
<div class="header center">
Reddit Pro Tools
</div>
<div class='header2 center'>
Reddit Troll Detection
</div>
<div class='header3 margintop bold underline'>
Frank
</div>
<div class="header2 center">
FRANK - Fresh Reddit Account, No Karma<br>
</div>
<div class='header3 bold indent'>
Minimum Comment Karma
</div>
<input type='text' id='minKarma'>
<div class='header3 bold indent'>
Minimum Account Age (days)
</div>
<input type='text' id='minAge'>
<div class='header3 margintop bold underline'>
Propaganda Domains
</div>
<div class="domains indent">
</div>
<input class='unfocus' type='text' id='addDomain' value='add domain here'>
<div class='header3 margintop bold underline'>
Deplorable Subreddits
</div>
<div class='header3 bold indent'>
Max Comment Karma
</div>
<input type='text' id='maxKarma'>
<div class="deplorables indent">
</div>
<input class='unfocus' style="margin-bottom: 0px;" type='text' id='addDeplorable' value='add subreddit here'>
<div class="fontXXSmall" style="text-align: center;">(case sensitive)</div>
<div class="center">
<a class="setDefaults fontXSmall center" href="#">reset to defaults</a>
</div>
<div class='header3 bold underline'>
Legend
</div>
<div class="row">
<div class="leftCol" align="right"><span class="rptTag trollColor">troll</span></div>
<div class="rightCol">User with -100 comment karma</div>
</div>
<div class="row">
<div class="leftCol" align="right"><span class="rptTag trollColor">sub troll</span></div>
<div class="rightCol">User with positive comment karma overall but negative comment karma in the current subreddit</div>
</div>
<div class="row">
<div class="leftCol" align="right"><span class="rptTag frankColor">frank</span></div>
<div class="rightCol">User with low comment karma and a new account</div>
</div>
<div class="row">
<div class="leftCol" align="right"><span class="rptTag propagandaColor">propaganda</span></div>
<div class="rightCol">Domain on your propaganda list</div>
</div>
<div class="row">
<div class="leftCol" align="right"><span class="rptTag deplorableColor">deplorable</span></div>
<div class="rightCol">User who participates in subreddits on your deplorable list</div>
</div></br>
<div class="fontXSmall center bold">
Created by
</div>
<div class="fontXSmall center">
<a class="center" href="https://www.reddit.com/user/feeling_impossible/" target="_blank">/u/feeling_impossible/</a></br>
<a href="https://www.patreon.com/feeling_impossible" target="_blank">Patreon</a>
</div>
</div>
</body>
</html>