AI 产品解读Customize the browser's new tab page with interactive content cards (images, web apps, RSS feeds) that cycle through in various play modes.
Makes the new tab page more engaging and useful by turning it into a personalized content discovery experience rather than a blank or default page.
User installs extension -> Extension overrides new tab with index.html -> Default resource manifest is loaded from GitHub -> Cards (images/apps/RSS) are displayed -> User can change play order (random/repeat/repeat-one) via options popup -> User can add custom resource URLs (JSON/XML/OPML) -> Settings and current resource are saved to chrome.storage.sync/local
Display images, web apps (via iframe), and RSS feed cards on new tabConfigurable play order modes: Random, Repeat all, Repeat oneSupport for custom resources via JSON, XML, or OPML URLsDefault official resource from GitHub (tabhub/cards)Background style customization per card typeSettings persisted via chrome.storage.sync
- 目标用户
- Chrome users who want a more visually interesting and informative new tab page / Users interested in discovering new content (images, web apps, RSS) each time they open a new tab / Users who want to customize their new tab with personal or curated resources
- The extension bundles large vendor libraries (chunk-vendors.js ~780KB) which makes static keyword matching noisy - many false positives from third-party code. Manual inspection of extension-specific code was necessary.
- Could not fully deobfuscate minified webpack chunks to verify all runtime behavior, but the core logic in index.d8eae115.js was readable enough to confirm no auth or payment flows.
- The extension references an external website (tabhub.github.io) for documentation and resources, but the extension itself does not require visiting it for core functionality.
付费分析未识别到付费功能
No payment, subscription, premium, or upgrade logic found in the extension code. The extension is free and open-source (MIT licensed dependencies). All features including custom resource loading, play order modes, and RSS feeds are available without any gating or billing. The keyword matches for 'pro', 'license', 'stripe' in the static scan are all from third-party library headers (Bootstrap, webpack vendors) and not extension-specific paid feature indicators.
- 置信度
- 95
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 否
- 登录理由
- The extension operates entirely locally using chrome.storage.sync and chrome.storage.local. It loads resources from public URLs (GitHub raw content) without any authentication. No login UI, auth tokens, or credential handling exists in the codebase. The core workflow of displaying new tab content works without any account.