IT기타

한꺼번에 여러 웹사이트를 열려면

emilyyoo 2024. 12. 26. 18:40
728x90

 

 

메모장에 아래 코드 (대괄호 안에 열려는 주소리스트 넣고)

 

입력 후 파일명 저장시  파일 형식을 HTML로 하고 저장. 

 

그리고 그 파일 열면 브라우져 띄워지면서 탭으로 리스트 쭉 열림. 

 

 

<html>
<body>
<script>
    const urls = [
        "https://betterwe.tistory.com/270",
        "https://betterwe.tistory.com/147"

         ............................

         ...........................

         ............................

          ............................


    ];
    urls.forEach(url => window.open(url));
</script>
</body>
</html>

 

 

 

 

 

 

 

 

728x90