AI 产品解读YouTube ad blocker that automatically removes all types of YouTube ads including homepage ads, sidebar ads, overlay ads, skippable and unskippable video ads
Eliminates disruptive YouTube advertisements across all ad formats (6 types identified) so users can watch videos without interruptions
User installs extension → extension injects content script on youtube.com → content script runs a polling loop every 100ms checking for ad-interrupting class on video container → detects ad type and either sets video currentTime to end (to skip) or hides DOM elements containing ads → logs skipped ad data to service worker which saves to local storage → popup displays aggregate statistics of ads blocked and time saved
Blocks 6 types of YouTube ads: homepage ads, suggested list ads, description area ads, skippable video ads, double video ads, and unskippable video adsAuto-skips video ads by setting video.currentTime to duration and clicking skip buttonHides non-video ad elements via CSS display:none on YouTube ad selectorsTracks statistics: videos skipped and minutes saved (today/week/month/total)On/off toggle to enable/disable the ad blockerMulti-language support via i18n (17 locales)
- 目标用户
- YouTube viewers who want an ad-free experience without paying for YouTube Premium
- The extension uses CSS hiding (display:none) and currentTime manipulation rather than network-level blocking — this is a cosmetic/DOM-based ad blocker approach
- Two temp content script files appear to be earlier versions/prototypes that are still bundled but not referenced in manifest content_scripts
付费分析未识别到付费功能
The extension has no payment processing, no feature gating, no upgrade UI, and no billing-related code. The 'premium' and 'subscribe' keyword hits are code comments describing YouTube's own ad elements that the extension hides (e.g., '.ytd-banner-promo-renderer' is YouTube's 'Subscribe for Premium' banner ad). These are ad selectors being blocked, not paid features of the extension itself.
- 置信度
- 95
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 否
- 登录理由
- The extension operates entirely locally using chrome.storage.local for all data persistence. There are zero references to login, authentication, accounts, or external API calls requiring credentials in the entire codebase. No OAuth, no login UI, no token handling. The extension works immediately upon installation on YouTube pages.