AI 产品解读Block known content farm websites by intercepting navigation and showing a warning page with options to go back, continue, or view via Google cache
Prevents users from accidentally visiting content farm sites (low-quality, ad-heavy aggregator websites) by blocking them at the network level and showing a warning interstitial page
1. Extension monitors tab creation and URL updates. 2. When user navigates to a domain matching the blacklist (system + user), the tab is redirected to stop.html. 3. Stop page warns the user and offers: Back (go to previous page), Continue (temporarily whitelist for 10 min and visit), or Continue (No Ads) (redirect via Google web cache). 4. User can customize blacklist/whitelist in options.html.
Built-in blacklist of 270+ known content farm domains (primarily Chinese-language sites)User-customizable blacklist to add personal unwanted domainsUser-customizable whitelist to unblock specific domains from the system blacklistWarning interstitial page with Back, Continue (temporary unblock), and Continue via Google Cache (ad-free) optionsNetwork-level blocking via Chrome declarativeNetRequest APITemporary whitelist that auto-expires after 10 minutes
- 目标用户
- Chinese-language internet users (primarily Traditional Chinese/Taiwan) who want to avoid content farm sites / Users who frequently encounter clickbait aggregator sites in search results or social media
- Extension is small (48KB, 21 files) with straightforward logic — all source files fully reviewed
- The content farm blacklist in sites.js is primarily Chinese-language domains; the extension targets a specific regional audience
- No external API calls beyond Google Web Cache URL construction — privacy-friendly design
付费分析未识别到付费功能
No payment, subscription, license check, billing API, upgrade prompt, or feature gating exists in the codebase. All features (built-in blacklist, user blacklist, user whitelist, stop page with continue/back/cache options) are freely available to all users. The 'pro' keyword hits are false positives from programgo.com (a content farm domain in sites.js:161), jQuery minified code internals, and URL encoding character '%26'. The 'license' hit is jQuery's own MIT license comment.
- 置信度
- 100
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 否
- 登录理由
- No login, authentication, account creation, or external service authentication exists anywhere in the codebase. All data is stored locally via chrome.storage.local. The 'token' keyword hits are false positives from URL query string parsing (stop.js:7, cfblocker/ListFormatter.js:10) and the 'session' hits refer to chrome.declarativeNetRequest.getSessionRules() — a Chrome API for session-scoped network rules, not user sessions.