AI 产品解读Ad blocker extension that blocks advertisements across all websites using network-level rules and cosmetic filtering
Protects users from overwhelming ads, banners, video ads, and visual noise on web pages, resulting in faster page loading, reduced resource usage, and a cleaner browsing experience
Install extension → ad blocking starts automatically with built-in filter lists → filters auto-update periodically (every 24 hours via alarms) → click extension icon to toggle whitelisting for specific domains → badge shows blocked ad count per tab. The extension registers content scripts on all URLs for cosmetic filtering and uses declarativeNetRequest for network-level blocking.
Network-level ad blocking via declarativeNetRequest with large filter lists (hosts, network rules)Cosmetic filtering via content scripts injected in MAIN and ISOLATED worlds to hide ad elements via CSSDynamic ad element detection using MutationObserver for single-page apps and dynamically loaded contentProcedural filtering with regex-based CSS selector matchingAuto-updating filter rules from galaxyadblocker.com backendPer-domain whitelist toggle via browser action icon click
- 目标用户
- General web users who want faster, cleaner browsing without ads / Users seeking a no-configuration ad blocker that works across all sites
- Code is heavily obfuscated/minified with fake console.log strings and Cyrillic character substitution, making exact line-by-line analysis harder but overall patterns are clear
- The galaxyadblocker.com website content was not inspected — it may have its own account/pricing model independent of the extension
- Cannot verify the full content of the large filter list files (10MB+ hosts file, 1.5MB CSS selectors) but their structure is consistent with standard ad-blocking filter lists
付费分析未识别到付费功能
No paid features exist in this extension. All keyword matches for 'pro', 'premium', 'stripe', 'subscription' are CSS selectors in the ad-blocking filter lists (generic_css.json) used to identify and hide ad-related DOM elements on web pages — e.g., '#premiumAdTop', '.ad--stripe', '.subscription-promo'. There is no payment API integration, no Stripe/Billing SDK, no premium feature gating, no upgrade UI, and no subscription handling in the codebase.
- 置信度
- 95
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 否
- 登录理由
- The extension operates entirely using Chrome local storage APIs with no authentication flow. The 'log in' heuristic match is a false positive from obfuscated code noise (the extension is heavily minified with fake console.log debug strings). The config.js 'userId' value (ve() function) is just a Chrome storage key name, not an account system. The extension communicates with galaxyadblocker.com only for anonymous telemetry (install/uninstall/update stats with a generated extension ID 'eid') and filter rule updates — no authentication tokens, no OAuth, no login UI.