import { ExternalLink } from 'lucide-react' import { siGooglechrome } from 'simple-icons' import { Link } from 'wouter' import { BlurFade } from '../../components/ui/blur-fade' import { MagicCard } from '../../components/ui/magic-card' import { useLanguage } from '../../i18n/context' export default function OneMoreThingSection() { const { isZh } = useLanguage() return (

One More Thing

{isZh ? '想要多页面控制?试试可选的浏览器扩展。' : 'Need multi-page control? Try the optional browser extension.'}

{'* '} {isZh ? 'PageAgent.js 本身无需任何扩展即可工作,扩展是额外的能力增强。' : 'PageAgent.js works without any extension — this is a power-up, not a dependency.'}

Chrome Web Store {isZh ? '从 Chrome 应用商店安装' : 'Install from Chrome Web Store'} {isZh ? '查看文档' : 'Read the Docs'}

{isZh ? '从 Claude Desktop、Copilot 或其他本地 Agent 直接发起浏览器任务?' : 'Using Claude Desktop, Copilot, or another local agent? Connect it to the extension with the MCP server.'}

{isZh ? '查看 MCP 文档' : 'Read the MCP docs'}

{[ { title: isZh ? '多页面任务' : 'Multi-Page Tasks', desc: isZh ? '跨多个页面和标签页连续执行任务,不再受限于单页上下文' : 'Run tasks across multiple pages and tabs without being limited to a single page context', }, { title: isZh ? '从页面发起控制' : 'Control from a WebPage', desc: isZh ? '在页面 JS 中发起任务,驱动整个浏览器完成跨标签操作' : 'Trigger tasks from in-page JS to drive the entire browser across tabs', }, { title: isZh ? '外部发起任务' : 'External Caller', desc: isZh ? '页面 JS、本地 Agent 或云端 Agent 均可通过扩展发起任务' : 'Local agents and cloud agents can control user browser through the extension', }, ].map((item) => (

{item.title}

{item.desc}

))}
) }