AI 产品解读Digital diagnostics and privacy/security enhancement suite
Helps users monitor their online privacy, block trackers, spoof location/time, and manage temporary emails to protect identity.
The extension injects content scripts into all pages to monitor privacy metrics and display a floating widget. It uses a background service worker to handle network requests to api2.ip8.com for diagnostics. A popup (index.html) allows users to access the main dashboard. Content scripts also inject UI bars for temporary email and interact with external sites like dnsleaktest.org.
Privacy Widget: Displays a grade/score for the current website's privacy and security status (trackers, malware, fingerprinting).Temp Mail: Provides a temporary email bar to hide real email addresses.WebRTC & Timezone Spoofing: Scripts to block WebRTC leaks and sync/spoof timezone to prevent fingerprinting.DNS & Whois Tools: Content script injection to interact with DNS leak tests and Whois lookups on supported sites.IP Diagnostics: Access to IP8.com tools for IP address and network diagnostics.
- 目标用户
- Privacy-conscious web users / Users concerned about online tracking and fingerprinting / Users needing temporary email addresses for sign-ups
- The background.js is heavily minified/obfuscated, making it difficult to trace all API calls and logic paths definitively.
- Some UI elements (like login buttons in CSS) suggest potential future features or unused code, but no active login flow was found.
- The extension relies on external services (api2.ip8.com, dnsleaktest.org) whose backend behavior (e.g., free vs paid tiers) cannot be fully determined from static analysis alone.
付费分析未识别到付费功能
No evidence of paid features, subscriptions, or payment gateways in the source code. The extension appears to be a free utility. Keywords like 'pro' and 'premium' found in the static analysis are from library license files (e.g., React, Babel) or generic CSS class names, not indicative of a paid tier.
- 置信度
- 95
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 否
- 登录理由
- The extension operates entirely locally or via anonymous API calls. The contentScript.js defines an API_BASE_URL of 'https://api2.ip8.com' but does not implement any authentication logic, token storage, or login UI. The popup (index.html) is a simple React container without login forms. The extension uses local storage for settings (e.g., 'ip8-fake-date') and does not require a user account to function. The 'login' keyword matches in CSS are for UI styling of potential future features or generic classes, but no functional login flow exists in the source.