AI 产品解读Website Blocking / Content Filter
Prevents users from accessing distracting or harmful websites (social media, adult content, gambling, etc.) to protect their attention span and mental well-being.
1. User installs extension. 2. Extension initializes default blocklists in chrome.storage. 3. User opens popup to toggle categories (Social Media, Adult, Bets, AI, Custom). 4. Service worker monitors navigation events (onCommitted, onHistoryStateUpdated). 5. If a visited URL matches a blocked category, the tab is automatically closed after 500ms.
Blocks social media sites (Instagram, TikTok, Twitter/X, Facebook, Reddit)Blocks adult content sites (Pornhub, Xvideos, OnlyFans)Blocks gambling/betting sites (Bet365, Betano)Blocks AI chat sites (ChatGPT, Gemini, Copilot)Allows users to customize and toggle blocked categories via a popup UIStores preferences locally in the browser
- 目标用户
- Individuals seeking to reduce screen time / People trying to break social media addiction / Users wanting to avoid 'brainrot' or low-quality content / Productivity-focused users
- The extension uses a bundled Vue.js frontend (minified), making it difficult to inspect the exact UI components without de-minification. However, the service worker logic and storage usage are clear.
- The extension relies on local storage; if the user clears browser data, they may lose their custom settings.
付费分析未识别到付费功能
The extension is completely free. The keyword 'pro' found in the static scan was a false positive from the Vue.js library source code ('@license MIT'). There are no references to Stripe, PayPal, subscriptions, upgrades, or any billing logic in the extension code.
- 置信度
- 95
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 否
- 登录理由
- The extension operates entirely locally using chrome.storage.sync to persist user preferences. There is no authentication flow, no external API calls requiring credentials, and no login UI in the popup. The core workflow of blocking websites can be completed immediately upon installation without any account creation or sign-in.