AI 产品解读Visual editing and styling of HTML anchor (<a>) tags on web pages.
Helps users visually distinguish different types of links (normal, blank-target, noopener/noreferrer) by applying distinct colors and backgrounds, and allows bulk modification of link attributes.
1. User installs extension. 2. Content script runs on all pages, injecting CSS to style links based on their attributes. 3. User clicks extension icon (popup) to send commands (e.g., add target='_blank', reset styles) to the content script. 4. User can customize colors in the Options page, which are saved to local storage and applied by the content script.
Applies CSS styles to <a> tags based on their attributes (normal, target='_blank', rel='noopener noreferrer').Adds visual labels (e.g., 'noopener noreferrer') before links with specific rel attributes.Allows users to bulk-add 'target="_blank"' to all links on a page.Allows users to remove 'target="_blank"' from all links.Customizable colors for different link categories via Options page.Settings persisted in local storage.
- 目标用户
- Web developers / Web designers / Users who frequently review or edit webpage link structures
- The popup and options JS files are heavily minified/bundled React code, making it difficult to inspect every UI element. However, grep searches for authentication and payment keywords yielded zero results, providing strong negative evidence.
- The extension is very small (232KiB) and simple, reducing the likelihood of hidden complex logic.
付费分析未识别到付费功能
The extension is completely free. There are no references to Stripe, PayPal, subscriptions, premium tiers, or upgrade flows in the source code. The keyword 'pro' found in static analysis was a false positive from React library internals ('react/profiler'). The extension provides all features (styling links, adding target='_blank') without gating.
- 置信度
- 95
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 否
- 登录理由
- The extension uses only local storage ('storage' permission) to persist user preferences for link styling. There are no API calls to external authentication services, no login UI in popup/options, and no references to user accounts. The core workflow (marking/editing anchor tags) works entirely client-side without any account requirement.