치지직 1080p 해상도 고정

치지직 1080p 해상도로 고정합니다

  1. // ==UserScript==
  2. // @name 치지직 1080p 해상도 고정
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.9
  5. // @description 치지직 1080p 해상도로 고정합니다
  6. // @match *://chzzk.naver.com/*
  7. // @match https://chzzk.naver.com/*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function () {
  13. 'use strict';
  14.  
  15. // 해상도 설정 함수 (1080p 시도, 없으면 720p 시도)
  16. function setResolution() {
  17. const qualityItem = document.querySelector(
  18. `.pzp-pc-setting-quality-pane__list-container > li:first-child:not(.pzp-pc-ui-setting-item--checked)`
  19. );
  20.  
  21. if (qualityItem) {
  22. qualityItem.click();
  23. console.log("1080p 해상도로 설정되었습니다.");
  24. } else {
  25. console.log("1080p 해상도를 사용할 수 없습니다.");
  26. }
  27. }
  28.  
  29. // 스크롤 오류 수정 함수
  30. function fixScrollIssue() {
  31. document.body.style.overflow = 'auto';
  32. document.documentElement.style.overflow = 'auto';
  33.  
  34. // `position: fixed` 속성 제거
  35. document.body.style.position = 'relative';
  36. document.documentElement.style.position = 'relative';
  37.  
  38. // `height` 속성 재설정
  39. document.body.style.height = 'auto';
  40. document.documentElement.style.height = 'auto';
  41.  
  42. console.log("스크롤 오류가 수정되었습니다.");
  43. }
  44.  
  45. // 특정 페이지에서 해상도 및 스크롤 설정 적용
  46. function applySettingsOnSpecificPages() {
  47. if (
  48. location.href.startsWith("https://chzzk.naver.com/live/") ||
  49. location.href.startsWith("https://chzzk.naver.com/video")
  50. ) {
  51. const interval = setInterval(() => {
  52. setResolution();
  53. clearInterval(interval); // 해상도 설정 후 간격 해제
  54. }, 500);
  55. fixScrollIssue(); // 스크롤 문제 해결
  56. } else {
  57. fixScrollIssue(); // 다른 페이지에서도 스크롤 문제 해결
  58. }
  59. }
  60.  
  61. // 페이지 로드 시 설정 적용
  62. window.addEventListener("load", () => {
  63. applySettingsOnSpecificPages();
  64. });
  65.  
  66. // URL 변경 감지하여 설정 재적용
  67. let lastUrl = location.href;
  68. setInterval(() => {
  69. if (location.href !== lastUrl) {
  70. lastUrl = location.href;
  71. applySettingsOnSpecificPages();
  72. }
  73. }, 1000);
  74. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址