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
|
var _app = function () {
this.id = 0;
this.videoElement = null;
this.audioElement = null;
this.musicVolume = 0.12;
this.musicFadeIn = 4000;
this.skippedIntro = false;
this.backgroundToggler = false;
this.shouldIgnoreVideo = false;
this.effects = ["bounce", "flash", "pulse", "rubberBand", "shake", "swing", "tada", "wobble", "jello"];
this.brandDescription = [
"grinchy boys",
"11 years old kids team",
"pro roblox players",
"xane ddosers",
"trashtalkers",
"zuhn fanboys",
"hack vs hack noobs",
"paste lords",
"baimware users"
];
this.titleChanger = function (text, delay) {
text = text ||
['s1nical', 's1n', 's1nny', 'sin', 'sinny', '=', 'maldrama.cc', 'Song name: KUSO GVKI - Cinnamon (feat. Apfel) (splash! Mag Premiere)'];
delay = delay || 2000;
var counter = 0;
setInterval(function () {
if(counter < text.length)
document.title = text[counter++];
else
document.title = text[counter = 0];
}, delay);
}
this.iconChanger = function (urls, delay) {
if (!urls)
return;
delay = delay || 2000;
var counter = 0;
setInterval(function () {
if(counter < urls.length) {
var link = document.querySelector("link[rel*='icon']") || document.createElement('link');
link.type = 'image/x-icon';
link.rel = 'shortcut icon';
link.href = urls[counter];
document.getElementsByTagName('head')[0].appendChild(link);
}
else
counter = 0;
++counter;
}, delay);
}
};
var app = new _app();
|