AI 产品解读YouTube ad blocker and auto-skipper that blocks pre-roll, mid-roll, banner, and overlay ads on YouTube videos.
Eliminates interruptions from YouTube ads (video pre-rolls, banners, overlays, search ads) and automatically clicks the skip button or fast-forwards through unskippable ads, saving users time and improving the viewing experience.
1. User installs extension. 2. Extension runs content script (aop/e.js) on all pages at document_start. 3. On YouTube pages, a setInterval loop checks for ad elements (.ad-showing, skip buttons, overlay ads). 4. If a skip button is found, it is auto-clicked. If no skip button, the ad video's currentTime is set to its duration to fast-forward. 5. Ad-related DOM elements are hidden via display:none. 6. Background service worker fetches blocking rules from backend.ytadblock.com and applies declarativeNetRequest rules to block ad network requests (doubleclick.net, pagead, imasdk, etc.).
Automatically clicks YouTube skip-ad buttonsFast-forwards unskippable video ads to their endBlocks YouTube ad network requests via declarativeNetRequest rulesHides ad overlay elements, banner ads, and promoted content from YouTube DOMBlocks ads on embedded YouTube videos on external sitesBlocks ad-related tracking and analytics requests
- 目标用户
- YouTube viewers who want an ad-free experience / Users who want faster YouTube page and video loading
- Large amount of commented-out code makes it harder to determine the full intended functionality (e.g., commented-out Facebook ad collection code suggests past or planned unrelated features).
- The backend API at backend.ytadblock.com is actively called (intiate, updaterule, rules endpoints) but the exact response format and whether it gates any functionality is unclear without live testing.
- No popup/options UI HTML files found in the package, so UI-based paid features or login forms would be impossible via UI alone.
付费分析未识别到付费功能
No evidence of paid features, subscriptions, or payment flows. No references to premium, upgrade, subscription, stripe, paypal, payment, or billing anywhere in the source code. The extension is entirely free to use. The 'pro' keyword hits are all false positives from words like 'process', 'Promise', 'proxy', and 'promoted' in ad-blocking selector strings.
- 置信度
- 95
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 否
- 登录理由
- No user authentication or account creation is required. The extension generates an anonymous random extensionId/uid on install (background/background.js lines 327-333, 544-552) and sends it to backend.ytadblock.com for tracking/analytics purposes only. All 'token' and 'userid' keyword hits are about anonymous device identifiers, not user login credentials. No login UI exists and no authentication flow is present.