AI 产品解读Split a single browser tab into two side-by-side or stacked panes using iframes.
Allows users to view two different sections of a webpage or compare two webpages simultaneously without opening multiple tabs or windows, improving multitasking and productivity.
1. User installs the extension.
2. User navigates to any webpage.
3. User clicks the extension icon (or uses the toolbar button) to toggle the split view.
4. The content script injects two iframes, loading the current page URL into both.
5. User adjusts split ratio, orientation, and other settings via the popup.
6. User can drag the divider to resize panes if resizable split is enabled.
7. Sync scroll/navigation keeps both panes aligned if enabled.
8. Clicking toggle again restores the original single-page view.
Split any web page into two panes vertically or horizontallyAdjustable split ratios (50-50, 60-40, 70-30, or custom)Resizable split with draggable dividerSynchronized scrolling option for both panesSynchronized navigation optionLight and dark themes
- 目标用户
- General web users who need to multitask / Researchers or professionals comparing content side-by-side / Users who want to maximize screen real estate within a single tab
- The extension is very new (v1.0, 0 users) and has minimal code, so edge cases or hidden behaviors are unlikely but not impossible.
- The content script uses iframes to duplicate the page content, which may not work correctly on all sites (e.g., sites with strict X-Frame-Options or CSP). This is a functional limitation of the extension, not an analysis limitation.
付费分析未识别到付费功能
The extension is a simple, single-feature productivity tool with no premium tiers, subscription models, or payment integrations. All features (split ratio, orientation, theme, sync scroll, sync navigation, resizable split) are fully available in the popup UI without any gating or upgrade prompts. The 'pro' keyword hit in the static scan was a false positive from the Chrome Web Store verified_contents.json file.
- 置信度
- 100
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 否
- 登录理由
- The extension operates entirely locally within the browser. It uses chrome.storage.sync for settings persistence and chrome.scripting to inject content into the current tab. There are no login forms, OAuth flows, or external authentication endpoints in the source code. The core workflow (splitting a tab) can be completed immediately after installation without any account.
Almost works. Splits the tab into two 150 px high divs :D. Rest of the window is unused.