forked from xho/Simple-Twitter-Shadowban-Checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (67 loc) · 3.24 KB
/
index.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
<!DOCTYPE html>
<!--
______ __ __
/\__ _\ __/\ \__/\ \__
\/_/\ \/ __ __ __/\_\ \ ,_\ \ ,_\ __ _ __
\ \ \/\ \/\ \/\ \/\ \ \ \/\ \ \/ /'__`\/\`'__\
\ \ \ \ \_/ \_/ \ \ \ \ \_\ \ \_/\ __/\ \ \/
\ \_\ \___x___/'\ \_\ \__\\ \__\ \____\\ \_\
\/_/\/__//__/ \/_/\/__/ \/__/\/____/ \/_/
____ __ __ __
/\ _`\ /\ \ /\ \ /\ \
\ \,\L\_\ \ \___ __ \_\ \ ___ __ __ __\ \ \____ __ ___
\/_\__ \\ \ _ `\ /'__`\ /'_` \ / __`\/\ \/\ \/\ \\ \ '__`\ /'__`\ /' _ `\
/\ \L\ \ \ \ \ \/\ \L\.\_/\ \L\ \/\ \L\ \ \ \_/ \_/ \\ \ \L\ \/\ \L\.\_/\ \/\ \
\ `\____\ \_\ \_\ \__/.\_\ \___,_\ \____/\ \___x___/' \ \_,__/\ \__/.\_\ \_\ \_\
\/_____/\/_/\/_/\/__/\/_/\/__,_ /\/___/ \/__//__/ \/___/ \/__/\/_/\/_/\/_/
____ __ __
/\ _`\ /\ \ /\ \
\ \ \/\_\\ \ \___ __ ___\ \ \/'\ __ _ __
\ \ \/_/_\ \ _ `\ /'__`\ /'___\ \ , < /'__`\/\`'__\
\ \ \L\ \\ \ \ \ \/\ __//\ \__/\ \ \\`\ /\ __/\ \ \/
\ \____/ \ \_\ \_\ \____\ \____\\ \_\ \_\ \____\\ \_\
\/___/ \/_/\/_/\/____/\/____/ \/_/\/_/\/____/ \/_/
Simpe Twitter Shadowban Checker
This is a free software web app under MIT license with an addendum:
see /license.txt
2016 @xho
-->
<html>
<head>
<title>Test Shadowban</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="favicon.png" />
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.css?1">
</head>
<body>
<header>
<h1>Is <span>@user</span><br> shadowbanned on Twitter?</h1>
</header>
<div class="container">
<section class="input">
<input type="text" placeholder="@username"
autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false">
<button>Check</button>
</section>
<section class="results">
<ul>
</ul>
<div>
</div>
</section>
</div>
<footer>
No copyright 2016 <a href="https://twitter.com/xho">@xho</a> - v. 1.0 beta
<br>
Source code is <a href="https://github.com/xho/Simple-Twitter-Shadowban-Checker" target="_blank">public on Github</a>
<hr>
N.b. 1: this app crowls and scans the search page on Twitter's web site, do not abuse
<br>
N.b. 2: no cookies for any purpose, so fuck off the privacy disclaimer and all that stuff
</footer>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>