├── README.md ├── index.html ├── shadowbanned.css ├── UNLICENSE └── shadowbanned.js /README.md: -------------------------------------------------------------------------------- 1 | # Reddit shadowban test tool 2 | 3 | Test yourself: https://skeeto.github.io/am-i-shadowbanned/ 4 | 5 | ## What's a shadowban? 6 | 7 | When a user is shadowbanned they can continue to make posts and leave 8 | comments without any indication of the ban. However, *everything* they 9 | do is automatically marked as spam. No one will see any of it until 10 | the post or comment is graciously freed by a moderator, if ever. To 11 | the moderator, the post title appears will appear as strikethrough in 12 | addition to the normal red background. 13 | 14 | This tool can test whether an account is shadowbanned, normal, or 15 | non-existent. It uses [CORS Anywhere][cors] to work around the 16 | cross-domain issue. 17 | 18 | [cors]: https://cors-anywhere.herokuapp.com/ 19 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/shadowbanned.css:
--------------------------------------------------------------------------------
1 | body {
2 | font-family: sans-serif;
3 | text-align: center;
4 | background: #fef;
5 | }
6 |
7 | h1>a{
8 | text-decoration: none;
9 | }
10 |
11 | #user {
12 | border: 1px solid black;
13 | border-radius: 10px;
14 | padding: 5px;
15 | font-size: x-large;
16 | text-align: center;
17 | }
18 |
19 | input[type="submit"] {
20 | height: 40px;
21 | vertical-align: top;
22 | border-radius: 10px;
23 | }
24 |
25 | .output {
26 | background: lightblue;
27 | padding: 15px;
28 | border-radius: 25px;
29 | width: 650px;
30 | text-align: center;
31 | font-weight: bold;
32 | font-size: x-large;
33 | margin: auto;
34 | margin-top: 20px;
35 | box-shadow: 0px 0px 3px 3px gray;
36 | }
37 |
38 |
39 | @media only screen and (max-width: 630px) {
40 | .output{
41 | max-width:350px;
42 | margin: auto;
43 | }
44 | #user{
45 | margin-bottom: 1em;
46 | }
47 | h1{
48 | margin-top: 2em;
49 | }
50 | }
51 |
--------------------------------------------------------------------------------
/UNLICENSE:
--------------------------------------------------------------------------------
1 | This is free and unencumbered software released into the public domain.
2 |
3 | Anyone is free to copy, modify, publish, use, compile, sell, or
4 | distribute this software, either in source code form or as a compiled
5 | binary, for any purpose, commercial or non-commercial, and by any
6 | means.
7 |
8 | In jurisdictions that recognize copyright laws, the author or authors
9 | of this software dedicate any and all copyright interest in the
10 | software to the public domain. We make this dedication for the benefit
11 | of the public at large and to the detriment of our heirs and
12 | successors. We intend this dedication to be an overt act of
13 | relinquishment in perpetuity of all present and future rights to this
14 | software under copyright law.
15 |
16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 | OTHER DEALINGS IN THE SOFTWARE.
23 |
24 | For more information, please refer to