自动跳过 YouTube 广告

立即自动跳过 YouTube 广告。不会被 YouTube 广告拦截器警告检测到。

目前为 2025-02-10 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Auto Skip YouTube Ads
  3. // @name:ar تخطي إعلانات YouTube تلقائيًا
  4. // @name:es Saltar Automáticamente Anuncios De YouTube
  5. // @name:fr Ignorer Automatiquement Les Publicités YouTube
  6. // @name:hi YouTube विज्ञापन स्वचालित रूप से छोड़ें
  7. // @name:id Lewati Otomatis Iklan YouTube
  8. // @name:ja YouTube 広告を自動スキップ
  9. // @name:ko YouTube 광고 자동 건너뛰기
  10. // @name:nl YouTube-Advertenties Automatisch Overslaan
  11. // @name:pt-BR Pular Automaticamente Anúncios Do YouTube
  12. // @name:ru Автоматический Пропуск Рекламы На YouTube
  13. // @name:vi Tự Động Bỏ Qua Quảng Cáo YouTube
  14. // @name:zh-CN 自动跳过 YouTube 广告
  15. // @name:zh-TW 自動跳過 YouTube 廣告
  16. // @namespace https://github.com/tientq64/userscripts
  17. // @version 6.0.3
  18. // @description Automatically skip YouTube ads instantly. Undetected by YouTube ad blocker warnings.
  19. // @description:ar تخطي إعلانات YouTube تلقائيًا على الفور. دون أن يتم اكتشاف ذلك من خلال تحذيرات أداة حظر الإعلانات في YouTube.
  20. // @description:es Omite automáticamente los anuncios de YouTube al instante. Sin que te detecten las advertencias del bloqueador de anuncios de YouTube.
  21. // @description:fr Ignorez automatiquement et instantanément les publicités YouTube. Non détecté par les avertissements du bloqueur de publicités YouTube.
  22. // @description:hi YouTube विज्ञापनों को स्वचालित रूप से तुरंत छोड़ दें। YouTube विज्ञापन अवरोधक चेतावनियों द्वारा पता नहीं लगाया गया।
  23. // @description:id Lewati iklan YouTube secara otomatis secara instan. Tidak terdeteksi oleh peringatan pemblokir iklan YouTube.
  24. // @description:ja YouTube 広告を即座に自動的にスキップします。YouTube 広告ブロッカーの警告には検出されません。
  25. // @description:ko YouTube 광고를 즉시 자동으로 건너뜁니다. YouTube 광고 차단 경고에 감지되지 않습니다.
  26. // @description:nl Sla YouTube-advertenties direct automatisch over. Ongemerkt door YouTube-adblockerwaarschuwingen.
  27. // @description:pt-BR Pule anúncios do YouTube instantaneamente. Não detectado pelos avisos do bloqueador de anúncios do YouTube.
  28. // @description:ru Автоматически пропускать рекламу YouTube мгновенно. Не обнаруживается предупреждениями блокировщиков рекламы YouTube.
  29. // @description:vi Tự động bỏ qua quảng cáo YouTube ngay lập tức. Không bị phát hiện bởi cảnh báo trình chặn quảng cáo của YouTube.
  30. // @description:zh-CN 立即自动跳过 YouTube 广告。不会被 YouTube 广告拦截器警告检测到。
  31. // @description:zh-TW 立即自動跳過 YouTube 廣告。 YouTube 廣告攔截器警告未被偵測到。
  32. // @author tientq64
  33. // @icon https://cdn-icons-png.flaticon.com/64/2504/2504965.png
  34. // @match https://www.youtube.com/*
  35. // @match https://m.youtube.com/*
  36. // @grant none
  37. // @license MIT
  38. // @compatible firefox
  39. // @compatible chrome
  40. // @compatible opera
  41. // @compatible safari
  42. // @compatible edge
  43. // @noframes
  44. // @homepage https://github.com/tientq64/userscripts/tree/main/scripts/Auto-Skip-YouTube-Ads
  45. // ==/UserScript==
  46.  
  47. function skipAd() {
  48. const isYouTubeShorts = checkIsYouTubeShorts()
  49. if (isYouTubeShorts) return
  50.  
  51. const ad = getInterruptiveAd()
  52. if (ad === null) return
  53.  
  54. const player = getYouTubePlayer()
  55. if (player === null) return
  56.  
  57. ad.classList.remove('ad-showing')
  58.  
  59. const videoData = player.getVideoData()
  60. const videoId = videoData.video_id
  61. const startTime = Math.floor(player.getCurrentTime())
  62. player.loadVideoById(videoId, startTime)
  63.  
  64. console.log('Ad skipped!', videoId, startTime, videoData.title)
  65. }
  66.  
  67. function getInterruptiveAd() {
  68. // This element appears when a video ad appears.
  69. const adShowing = document.querySelector('.ad-showing')
  70. if (adShowing !== null) return adShowing
  71.  
  72. // Timed pie countdown ad.
  73. const pieCountdown = document.querySelector('.ytp-ad-timed-pie-countdown-container')
  74. if (pieCountdown !== null) return pieCountdown
  75.  
  76. return null
  77. }
  78.  
  79. function checkIsYouTubeShorts() {
  80. return location.pathname.startsWith('/shorts/')
  81. }
  82.  
  83. /**
  84. * Finds and returns the current YouTube video player.
  85. *
  86. * @returns The current YouTube video player, or `null` if not found.
  87. */
  88. function getYouTubePlayer() {
  89. let player
  90. if (isYouTubeMobile) {
  91. const playerEl = document.querySelector('#movie_player')
  92. player = playerEl
  93. } else {
  94. const playerEl = document.querySelector('#ytd-player')
  95. if (playerEl === null) return null
  96. player = playerEl.getPlayer()
  97. }
  98. return player
  99. }
  100.  
  101. function addCss() {
  102. const adsSelectors = [
  103. // Ad banner in the upper right corner, above the video playlist.
  104. '#player-ads',
  105.  
  106. // Masthead ad on home page.
  107. '#masthead-ad',
  108.  
  109. // Sponsored ad video items on home page.
  110. // 'ytd-ad-slot-renderer',
  111.  
  112. // '.ytp-suggested-action',
  113. '.yt-mealbar-promo-renderer',
  114.  
  115. // Featured product ad banner at the bottom left of the video.
  116. '.ytp-featured-product',
  117.  
  118. // Products shelf ad banner below the video description.
  119. 'ytd-merch-shelf-renderer',
  120.  
  121. // YouTube Music Premium trial promotion dialog, bottom left corner.
  122. 'ytmusic-mealbar-promo-renderer',
  123.  
  124. // YouTube Music Premium trial promotion banner on home page.
  125. 'ytmusic-statement-banner-renderer'
  126. ]
  127. const adsSelector = adsSelectors.join(',')
  128. const css = `${adsSelector} { display: none !important; }`
  129. const style = document.createElement('style')
  130. style.textContent = css
  131. document.head.appendChild(style)
  132. }
  133.  
  134. /**
  135. * Remove ad elements using JavaScript because these selectors require the use of the CSS
  136. * `:has` selector which is not supported in older browser versions.
  137. */
  138. function removeAdElements() {
  139. const adSelectors = [
  140. // Ad banner in the upper right corner, above the video playlist.
  141. ['#panels', 'ytd-engagement-panel-section-list-renderer[target-id="engagement-panel-ads"]'],
  142.  
  143. // Sponsored ad video items on home page.
  144. // ['ytd-rich-item-renderer', '.ytd-ad-slot-renderer'],
  145.  
  146. // ['ytd-rich-section-renderer', '.ytd-statement-banner-renderer'],
  147.  
  148. // Ad videos on YouTube Short.
  149. ['ytd-reel-video-renderer', '.ytd-ad-slot-renderer']
  150.  
  151. // Ad blocker warning dialog.
  152. // ['tp-yt-paper-dialog', '#feedback.ytd-enforcement-message-view-model'],
  153.  
  154. // Survey dialog on home page, located at bottom right.
  155. // ['tp-yt-paper-dialog', ':scope > ytd-checkbox-survey-renderer'],
  156.  
  157. // Survey to rate suggested content, located at bottom right.
  158. // ['tp-yt-paper-dialog', ':scope > ytd-single-option-survey-renderer']
  159. ]
  160. for (const adSelector of adSelectors) {
  161. const adEl = document.querySelector(adSelector[0])
  162. if (adEl === null) continue
  163. const neededEl = adEl.querySelector(adSelector[1])
  164. if (neededEl === null) continue
  165. adEl.remove()
  166. }
  167. }
  168.  
  169. const isYouTubeMobile = location.hostname === 'm.youtube.com'
  170.  
  171. window.setInterval(skipAd, 500)
  172. window.setInterval(removeAdElements, 1000)
  173.  
  174. addCss()
  175. removeAdElements()
  176. skipAd()

QingJ © 2025

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