自动跳过 YouTube 广告

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

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

  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.11
  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. // @grant none
  28. // @license MIT
  29. // @compatible firefox
  30. // @compatible chrome
  31. // @compatible opera
  32. // @compatible safari
  33. // @compatible edge
  34. // @noframes
  35. // @homepage https://github.com/tientq64/userscripts/tree/main/scripts/Auto-Skip-YouTube-Ads
  36. // ==/UserScript==
  37.  
  38. function skipAd() {
  39. video = document.querySelector('#movie_player video.html5-main-video')
  40.  
  41. const adPlayer = document.querySelector('#movie_player.ad-showing')
  42. if (adPlayer) {
  43. const skipButton = document.querySelector(`
  44. .ytp-skip-ad-button,
  45. .ytp-ad-skip-button,
  46. .ytp-ad-skip-button-modern
  47. `)
  48. if (skipButton) {
  49. skipButton.click()
  50. skipButton.remove()
  51. } else if (
  52. video &&
  53. video.src &&
  54. Number.isFinite(video.duration) &&
  55. video.currentTime < video.duration / 2
  56. ) {
  57. video.currentTime = 9999
  58. }
  59. }
  60.  
  61. const adBlockerWarningDialog = document.querySelector(`
  62. tp-yt-paper-dialog:has(#feedback.ytd-enforcement-message-view-model)
  63. `)
  64. if (adBlockerWarningDialog) {
  65. adBlockerWarningDialog.remove()
  66. }
  67.  
  68. const playButton = document.querySelector('button.ytp-play-button')
  69. if (playButton) {
  70. playButton.addEventListener('click', allowPauseVideo)
  71. }
  72.  
  73. fineScrubbing = document.querySelector('.ytp-fine-scrubbing')
  74.  
  75. const adShortVideos = document.querySelectorAll(
  76. 'ytd-reel-video-renderer:has(.ytd-ad-slot-renderer)'
  77. )
  78. for (const adShortVideo of adShortVideos) {
  79. adShortVideo.remove()
  80. }
  81.  
  82. if (video) {
  83. video.addEventListener('pause', handlePauseVideo)
  84. video.addEventListener('mouseup', allowPauseVideo)
  85. video.addEventListener('timeupdate', handleTimeUpdateVideo)
  86.  
  87. if (video.src !== oldVideoSrc) {
  88. const currentTime = videosCurrentTime[video.src]
  89. if (currentTime !== undefined) {
  90. video.currentTime = currentTime
  91. }
  92. oldVideoSrc = video.src
  93. }
  94. }
  95. }
  96.  
  97. function allowPauseVideo() {
  98. isAllowPauseVideo = true
  99. window.clearTimeout(allowPauseVideoTimeoutId)
  100. allowPauseVideoTimeoutId = window.setTimeout(disallowPauseVideo, 500)
  101. }
  102.  
  103. function disallowPauseVideo() {
  104. isAllowPauseVideo = false
  105. window.clearTimeout(allowPauseVideoTimeoutId)
  106. }
  107.  
  108. function handlePauseVideo() {
  109. if (isAllowPauseVideo) {
  110. disallowPauseVideo()
  111. return
  112. }
  113. if (fineScrubbing?.checkVisibility()) return
  114. if (video) {
  115. if (video.duration - video.currentTime < 0.1) return
  116. video.play()
  117. }
  118. }
  119.  
  120. function handleTimeUpdateVideo() {
  121. if (video) {
  122. videosCurrentTime[video.src] = video.currentTime
  123. }
  124. }
  125.  
  126. function handleGlobalKeyDownKeyUp(event) {
  127. if (document.activeElement?.matches('input, textarea, select')) return
  128. if (event.type === 'keydown') {
  129. if (event.code === 'KeyK') {
  130. allowPauseVideo()
  131. }
  132. } else {
  133. if (event.code === 'Space') {
  134. allowPauseVideo()
  135. }
  136. }
  137. }
  138.  
  139. let video = null
  140. let fineScrubbing = null
  141. let isAllowPauseVideo = false
  142. let allowPauseVideoTimeoutId = 0
  143. const videosCurrentTime = {}
  144. let oldVideoSrc = ''
  145.  
  146. if (window.MutationObserver) {
  147. const observer = new MutationObserver(skipAd)
  148. observer.observe(document.body, {
  149. attributes: true,
  150. attributeFilter: ['class', 'src'],
  151. childList: true,
  152. subtree: true
  153. })
  154. } else {
  155. window.setInterval(skipAd, 500)
  156. }
  157. skipAd()
  158.  
  159. window.addEventListener('keydown', handleGlobalKeyDownKeyUp)
  160. window.addEventListener('keyup', handleGlobalKeyDownKeyUp)
  161.  
  162. const style = document.createElement('style')
  163. style.textContent = `
  164. #player-ads,
  165. #masthead-ad,
  166. #panels:has(ytd-ads-engagement-panel-content-renderer),
  167. ytd-ad-slot-renderer,
  168. ytd-rich-item-renderer:has(.ytd-ad-slot-renderer),
  169. ytd-reel-video-renderer:has(.ytd-ad-slot-renderer),
  170. tp-yt-paper-dialog:has(#feedback.ytd-enforcement-message-view-model),
  171. .yt-mealbar-promo-renderer {
  172. display: none !important;
  173. }`
  174. document.head.appendChild(style)

QingJ © 2025

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