-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtmp_uselessweb.js
More file actions
183 lines (165 loc) · 5.41 KB
/
Copy pathtmp_uselessweb.js
File metadata and controls
183 lines (165 loc) · 5.41 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
function uselessWebButton(button) {
var initialClick = false
var randomRange = 6
let sitelistName = 'sitelist-mar-19'
var sitesList = [
'https://sliding.toys/mystic-square/8-puzzle/daily/',
'https://longdogechallenge.com/',
'https://maze.toys/mazes/mini/daily/',
'https://optical.toys',
'https://paint.toys/calligram/',
'https://puginarug.com',
'https://memory.toys/classic/easy/',
'https://alwaysjudgeabookbyitscover.com',
'https://clicking.toys/flip-grid/neat-nine/3-holes/',
'https://weirdorconfusing.com/',
'https://checkbox.toys/scale/',
'https://binarypiano.com/',
'https://mondrianandme.com/',
'https://onesquareminesweeper.com/',
'https://cursoreffects.com',
'http://floatingqrcode.com/',
'https://thatsthefinger.com/',
'https://cant-not-tweet-this.com/',
'http://heeeeeeeey.com/',
'http://corndog.io/',
'http://eelslap.com/',
'http://www.staggeringbeauty.com/',
'http://burymewithmymoney.com/',
'https://smashthewalls.com/',
'https://jacksonpollock.org/',
'https://toms.toys',
'http://endless.horse/',
'https://duckstreet.net/',
'http://drawing.garden/',
'https://www.trypap.com/',
'http://www.republiquedesmangues.fr/',
'http://www.movenowthinklater.com/',
'https://sliding.toys/mystic-square/15-puzzle/daily/',
'https://paint.toys/',
'https://checkboxrace.com/',
'http://www.rrrgggbbb.com/',
'http://www.koalastothemax.com/',
'https://rotatingsandwiches.com/',
'http://www.everydayim.com/',
'http://randomcolour.com/',
'http://maninthedark.com/',
'http://cat-bounce.com/',
'http://chrismckenzie.com/',
'https://thezen.zone/',
'http://ninjaflex.com/',
'http://ihasabucket.com/',
'http://corndogoncorndog.com/',
'http://www.hackertyper.com/',
'https://pointerpointer.com',
'http://imaninja.com/',
'http://www.partridgegetslucky.com/',
'http://www.ismycomputeron.com/',
'http://www.nullingthevoid.com/',
'http://www.muchbetterthanthis.com/',
'http://www.yesnoif.com/',
'http://lacquerlacquer.com',
'https://clicking.toys/peg-solitaire/solid/',
'http://potatoortomato.com/',
'http://iamawesome.com/',
'https://strobe.cool/',
'http://thisisnotajumpscare.com/',
'http://doughnutkitten.com/',
'http://crouton.net/',
'http://corgiorgy.com/',
'http://www.wutdafuk.com/',
'http://unicodesnowmanforyou.com/',
'http://chillestmonkey.com/',
'http://scroll-o-meter.club/',
'http://www.crossdivisions.com/',
'http://tencents.info/',
'https://memory.toys/maze/easy/',
'https://boringboringboring.com/',
'http://www.patience-is-a-virtue.org/',
'http://pixelsfighting.com/',
'http://isitwhite.com/',
'https://existentialcrisis.com/',
'http://onemillionlols.com/',
'http://www.omfgdogs.com/',
'http://oct82.com/',
'http://chihuahuaspin.com/',
'http://www.blankwindows.com/',
'http://tunnelsnakes.com/',
'http://www.trashloop.com/',
'http://spaceis.cool/',
'http://www.doublepressure.com/',
'http://www.donothingfor2minutes.com/',
'http://buildshruggie.com/',
'https://optical.toys/thatcher-effect/',
// 'http://buzzybuzz.biz/', cert
'http://yeahlemons.com/',
'http://wowenwilsonquiz.com',
// 'https://thepigeon.org/', expired
'http://notdayoftheweek.com/',
'https://number.toys/',
'https://card.toys',
'http://www.amialright.com/',
'https://greatbignothing.com/',
'https://zoomquilt.org/',
"https://optical.toys/troxler-fade/",
'https://dadlaughbutton.com/',
'https://remoji.com/',
'http://papertoilet.com/',
'https://loopedforinfinity.com/',
"https://www.ripefordebate.com/",
'https://end.city/',
'https://elonjump.com/',
'https://www.bouncingdvdlogo.com/',
'https://toybox.toms.toys',
'https://memory.toys/monkey-challenge/easy/',
'https://memory.toys',
]
var sites = null
// Prepares and binds the button
var init = function () {
button.onclick = onButtonClick
// Initial set sites
sites = sitesList.slice()
if (localStorage[sitelistName]) {
// They have storage, filter out any not in the base list, that could be spam now
var currentSites = JSON.parse(localStorage[sitelistName])
var filteredSites = currentSites.filter(
(site) => sitesList.indexOf(site) !== -1,
)
if (filteredSites.length > 0) {
sites = filteredSites
}
}
}
// Selects and removes the next website from the list
var selectWebsite = function () {
var site, range, index
range = randomRange > sites.length ? sites.length : randomRange
index = Math.floor(Math.random() * range)
site = sites[index]
sites.splice(index, 1)
return site
}
var openSite = function (url) {
window.open(url)
}
var onButtonClick = function () {
if (window.gtag) {
gtag('event', 'click', { event_category: 'button' })
}
if (initialClick === false) {
// Change text from "TO A"
document.getElementById('joint').innerHTML = 'TO ANOTHER'
initialClick = true
}
var url = selectWebsite()
openSite(url)
// User has visited ALL the sites... refresh the list.
if (sites.length == 0) {
sites = sitesList.slice()
}
localStorage[sitelistName] = JSON.stringify(sites)
}
init()
}
var uselessWebButton = new uselessWebButton(document.getElementById('button'))