自动跳过 YouTube 广告

自动立即跳过 YouTube 广告。删除广告拦截器警告弹出窗口。非常轻量且高效。

目前为 2024-08-01 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Auto Skip YouTube Ads
  3. // @name:vi Tự Động Bỏ Qua Quảng Cáo YouTube
  4. // @name:zh-CN 自动跳过 YouTube 广告
  5. // @name:zh-TW 自動跳過 YouTube 廣告
  6. // @name:ja YouTube 広告を自動スキップ
  7. // @name:ko YouTube 광고 자동 건너뛰기
  8. // @name:es Saltar Automáticamente Anuncios De YouTube
  9. // @name:ru Автоматический Пропуск Рекламы На YouTube
  10. // @name:id Lewati Otomatis Iklan YouTube
  11. // @name:hi YouTube विज्ञापन स्वचालित रूप से छोड़ें
  12. // @namespace https://github.com/tientq64/userscripts
  13. // @version 4.3.3
  14. // @description Automatically skip YouTube ads instantly. Remove the ad blocker warning pop-up. Very lightweight and efficient.
  15. // @description:vi Tự động bỏ qua quảng cáo YouTube ngay lập tức. Loại bỏ cửa sổ bật lên cảnh báo trình chặn quảng cáo. Rất nhẹ và hiệu quả.
  16. // @description:zh-CN 自动立即跳过 YouTube 广告。删除广告拦截器警告弹出窗口。非常轻量且高效。
  17. // @description:zh-TW 立即自動跳過 YouTube 廣告。刪除廣告攔截器警告彈出視窗。非常輕巧且高效。
  18. // @description:ja YouTube 広告を即座に自動的にスキップします。広告ブロッカーの警告ポップアップを削除します。非常に軽量で効率的です。
  19. // @description:ko YouTube 광고를 즉시 자동으로 건너뜁니다. 광고 차단 경고 팝업을 제거하세요. 매우 가볍고 효율적입니다.
  20. // @description:es Omita automáticamente los anuncios de YouTube al instante. Elimine la ventana emergente de advertencia del bloqueador de anuncios. Muy ligero y eficiente.
  21. // @description:ru Автоматически пропускайте рекламу YouTube мгновенно. Удалите всплывающее окно с предупреждением о блокировке рекламы. Очень легкий и эффективный.
  22. // @description:id Lewati iklan YouTube secara otomatis secara instan. Hapus pop-up peringatan pemblokir iklan. Sangat ringan dan efisien.
  23. // @description:hi YouTube विज्ञापनों को तुरंत स्वचालित रूप से छोड़ें। विज्ञापन अवरोधक चेतावनी पॉप-अप को हटाएँ। बहुत हल्का और कुशल।
  24. // @author tientq64
  25. // @icon https://cdn-icons-png.flaticon.com/64/2504/2504965.png
  26. // @match https://www.youtube.com
  27. // @match https://www.youtube.com/*
  28. // @grant none
  29. // @license MIT
  30. // @compatible firefox
  31. // @compatible chrome
  32. // @compatible opera
  33. // @compatible safari
  34. // @compatible edge
  35. // @noframes
  36. // @homepage https://github.com/tientq64/userscripts/tree/main/scripts/Auto-Skip-YouTube-Ads
  37. // ==/UserScript==
  38.  
  39. function skipAd() {
  40. video = document.querySelector('#movie_player video.html5-main-video')
  41. if (video === null) return
  42.  
  43. const adPlayer = document.querySelector('#movie_player.ad-showing')
  44. if (adPlayer) {
  45. const skipButton = document.querySelector(`
  46. .ytp-skip-ad-button,
  47. .ytp-ad-skip-button,
  48. .ytp-ad-skip-button-modern
  49. `)
  50. if (skipButton) {
  51. skipButton.click()
  52. } else {
  53. video.currentTime = 9999
  54. }
  55. }
  56.  
  57. const adBlockerWarningDialog = document.querySelector('tp-yt-paper-dialog:has(#dismiss-button)')
  58. if (adBlockerWarningDialog) {
  59. adBlockerWarningDialog.remove()
  60. }
  61.  
  62. const playButton = document.querySelector('button.ytp-play-button')
  63. if (playButton) {
  64. playButton.addEventListener('click', allowPauseVideo)
  65. }
  66.  
  67. video.addEventListener('pause', handlePauseVideo)
  68. video.addEventListener('mouseup', allowPauseVideo)
  69. }
  70.  
  71. function allowPauseVideo() {
  72. isAllowPauseVideo = true
  73. window.clearTimeout(allowPauseVideoTimeoutId)
  74. allowPauseVideoTimeoutId = window.setTimeout(disallowPauseVideo, 500)
  75. }
  76.  
  77. function disallowPauseVideo() {
  78. isAllowPauseVideo = false
  79. window.clearTimeout(allowPauseVideoTimeoutId)
  80. }
  81.  
  82. function handlePauseVideo() {
  83. if (isAllowPauseVideo) {
  84. disallowPauseVideo()
  85. return
  86. }
  87. if (video.ended) return
  88. video.play()
  89. }
  90.  
  91. function handleGlobalKeyDownKeyUp(event) {
  92. if (document.activeElement.matches('input, textarea, select')) return
  93. if (event.type === 'keydown') {
  94. if (event.code === 'KeyK') {
  95. allowPauseVideo()
  96. }
  97. } else {
  98. if (event.code === 'Space') {
  99. allowPauseVideo()
  100. }
  101. }
  102. }
  103.  
  104. let video = null
  105. let isAllowPauseVideo = false
  106. let allowPauseVideoTimeoutId = 0
  107.  
  108. if (window.MutationObserver) {
  109. const observer = new MutationObserver(skipAd)
  110. observer.observe(document.body, {
  111. attributes: true,
  112. attributeFilter: ['class', 'src'],
  113. childList: true,
  114. subtree: true
  115. })
  116. } else {
  117. window.setInterval(skipAd, 500)
  118. }
  119. skipAd()
  120.  
  121. window.addEventListener('keydown', handleGlobalKeyDownKeyUp)
  122. window.addEventListener('keyup', handleGlobalKeyDownKeyUp)
  123.  
  124. const style = document.createElement('style')
  125. style.textContent = `
  126. #player-ads,
  127. #masthead-ad,
  128. #panels:has(ytd-ads-engagement-panel-content-renderer),
  129. ytd-ad-slot-renderer,
  130. ytd-rich-item-renderer:has(.ytd-ad-slot-renderer),
  131. ytd-reel-video-renderer:has(.ytd-ad-slot-renderer),
  132. tp-yt-paper-dialog:has(#dismiss-button) {
  133. display: none !important;
  134. }`
  135. document.head.appendChild(style)

QingJ © 2025

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