https://play.szvy.win/

제출된 URL:
https://play.szvy.win/
보고서 완료:

링크 · 0개 결과

페이지에서 식별된 외부 링크

JavaScript 변수 · 18개 결과

페이지의 창 개체에 로드된 전역 JavaScript 변수는 함수 외부에서 선언된 변수로, 현재 범위 내에서 코드의 어느 부분에서나 액세스할 수 있습니다

이름유형
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
$function
jQueryfunction
pJSfunction
hexToRgbfunction
clampfunction
isInArrayfunction
requestAnimFramefunction

콘솔 로그 메시지 · 1개 결과

웹 콘솔에 기록된 메시지

유형카테고리로그
logother
URL
https://play.szvy.win/app.js
텍스트
callback - particles.js config loaded

HTML

페이지의 원시 HTML 본문

<!DOCTYPE html><html><head>
   <meta name="viewport" content="width=device-width, initial-scale=1">
   <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
   <link rel="stylesheet" href="../css/index.css">
   <link rel="icon" type="image/x-icon" href="https://www.google.com/favicon.ico">
   <script src="/particles.js"></script>
   <script src="/app.js"></script>
   <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
   <title>calculator - Google Search</title>
</head>
<body style="">
   <div id="particles-js"><canvas class="particles-js-canvas-el" width="800" height="600" style="width: 100%; height: 100%;"></canvas></div>
   <div class="announcement-modal" id="announcement-banner" style="">
     <div class="close-icon" id="announcement-close">×</div>
     <i class="fa-solid fa-bullhorn fa-2xl" style="margin-bottom:10px;"></i>
     <div class="announcement-text" style="margin-top: 20px;">new update! most now.gg games are fixed, minecraft is fixed, and the szvy central minecraft server is out now! just go to multiplayer under the minecraft on this site!</div>
   </div>
   <div class="navbar">
    <div class="logo">
        <span>Szvy Central</span>
    </div>
    <div class="nav-right">
        <a href="/index.html"><i class="fa-solid fa-house"></i></a>
        <a href="/pages/gxmez.html"><i class="fas fa-gamepad"></i></a>
        <a href="/pages/4pps.html"><i class="fas fa-border-all"></i></a>
        <a href="/pages/movies.html"><i class="fas fa-film"></i></a>
        <a href="/pages/ai.html"><i class="fa-solid fa-robot"></i></a>
        <a href="/pages/settings.html"><i class="fa-solid fa-gear"></i></a>
        <a href="/pages/extra.html"><i class="fas fa-plus"></i></a>
        <a href="/extra/discord.html"><i class="fa-brands fa-discord"></i></a>
    </div>
</div>
   <div id="content">
      <h1 id="title">Szvy Central V2</h1>
      <form id="uv-form">
        <input id="uv-search-engine" value="https://www.google.com/search?q=%s" type="hidden"> 
        <input id="uv-address" type="text" placeholder="Search freely with Szvy Central..." class="form__input" autocomplete="off">
         <p class="smallahhtext">Quick Links</p>
         <div class="quicklink-container" id="quicklink-container">
            <a class="quicklink-button" href="embed.html#https://www.google.com">
               <img src="/assets/google.png" alt="Google">
               <p>Google</p>
            </a>
            <a class="quicklink-button" href="embed.html#https://ngg.frogiee.one/hub">
               <img src="/assets/ngglol.png" alt="nowgg.lol">
               <p>nowgg.lol</p>
            </a>
            <a class="quicklink-button" href="embed.html#https://play.geforcenow.com/mall/">
                <img src="/assets/geforce.png" alt="Geforce Now">
                <p>Geforce Now</p>
             </a>
            <a class="quicklink-button" href="embed.html#https://www.tiktok.com">
               <img src="/assets/tiktok.png" alt="Tiktok">
               <p>Tiktok</p>
            </a>
            <a class="quicklink-button" id="custom-site-container">
               <img src="/assets/plus.png" alt="Add Custom Site">
               <p>Add Site</p>
            </a>
         </div>
         <div class="desc left-margin">
            <p id="uv-error"></p>
            <pre id="uv-error-code"></pre>
         </div>
         <script src="/szvy/uv.bundle.js" defer=""></script>
         <script src="/szvy/uv.config.js?cdn" defer=""></script>
         <script>
           const form = document.querySelector("#uv-form");
           const input = document.querySelector("#uv-address");
           document.addEventListener("DOMContentLoaded", function () {
             if (!localStorage.getItem('announcementClosed')) {
               $('#announcement-banner').fadeIn();
             }
             $('#announcement-close').click(function() {
               $('#announcement-banner').fadeOut();
               localStorage.setItem('announcementClosed', 'true');
             });
             form.addEventListener("submit", async (event) => {
               event.preventDefault();
               window.navigator.serviceWorker
                 .register("/szvy/sw.js", {
                   scope: __uv$config.prefix,
                 })
                 .then(() => {
                   let url = input.value.trim();
                   if (!isUrl(url)) url = "https://www.google.com/search?hl=en-us&q=" + url;
                   else if (!(url.startsWith("https://") || url.startsWith("http://")))
                     url = "http://" + url;
                   sessionStorage.setItem("encodedUrl", __uv$config.encodeUrl(url));
                   location.href = "math.html";
                 });
             });
           });
           function isUrl(val = "") {
             if (
               /^http(s?):\/\//.test(val) ||
               (val.includes(".") && val.slice(0, 1) !== " ")
             )
               return true;
             return false;
           }
         </script>
      <script>
         function loadCustomLinks() {
            var quicklinkContainer = document.getElementById('quicklink-container');
            var savedLinks = JSON.parse(localStorage.getItem('customLinks')) || [];
            savedLinks.forEach(function(link) {
               addCustomLinkToUI(link.url, link.image, link.name);
            });
         }
         function addCustomLinkToUI(customUrl, customImage, customName) {
            var quicklinkContainer = document.getElementById('quicklink-container');
            var newQuicklink = document.createElement('a');
            newQuicklink.className = 'quicklink-button';
            newQuicklink.href = 'embed.html#' + customUrl;
            newQuicklink.innerHTML = '<img src="' + customImage + '" alt="' + customName + '"><p>' + customName + '</p>';
            quicklinkContainer.insertBefore(newQuicklink, document.getElementById('custom-site-container'));
         }
         document.getElementById('custom-site-container').addEventListener('click', function() {
            var customUrl = prompt("Enter the URL (https required):");
            if (!customUrl) {
               alert("URL is required!");
               return;
            }
            var customImage = prompt("Enter the image URL for the site:");
            if (!customImage) {
               alert("Image URL is required!");
               return;
            }
            var customName = prompt("Enter the name for the site:");
            if (!customName) {
               alert("Site name is required!");
               return;
            }
            var newLink = {
               url: customUrl,
               image: customImage,
               name: customName
            };
            var savedLinks = JSON.parse(localStorage.getItem('customLinks')) || [];
            savedLinks.push(newLink);
            localStorage.setItem('customLinks', JSON.stringify(savedLinks));
            addCustomLinkToUI(customUrl, customImage, customName);
         });
         window.onload = function() {
            loadCustomLinks();
         };
      </script>
   </form></div>


</body></html>