// plugins.jsx — Plugin Marketplace const PluginsScreen = () => { const cats = ['All', 'Productivity', 'Reading', 'Privacy', 'Developer', 'AI', 'Writing', 'Design']; const plugins = [ { name:'Reader+', author:'ELY Studio', desc:'Distraction-free reading mode with serif typography & ambient backgrounds.', accent:'linear-gradient(135deg,#ffd1d8,#b9c7ff)', glyph:'¶', installs:'24.5k', rating:4.9, tags:['Featured','Reading'] }, { name:'Tab Capsules', author:'orbit.dev', desc:'Hibernate tabs into searchable capsules. Restore in one click — even months later.', accent:'linear-gradient(135deg,#c5f0db,#7c6cf7)', glyph:'◐', installs:'18.2k', rating:4.8, tags:['Productivity'] }, { name:'Coast Privacy Shield', author:'Coast Labs', desc:'Per-site tracker counts and one-tap container tabs.', accent:'linear-gradient(135deg,#1d1c1a,#7c6cf7)', glyph:'◊', dark:true, installs:'31.0k', rating:4.7, tags:['Privacy'] }, { name:'Quill', author:'paperhouse', desc:'Annotate any page. Notes sync to Notion, Obsidian, Bear.', accent:'linear-gradient(135deg,#fff3ee,#f4c8b8)', glyph:'✎', installs:'12.4k', rating:4.6, tags:['Writing'] }, { name:'ELY AI · Summon', author:'ELY Studio', desc:'Ask anything about the page. Beautiful inline citations.', accent:'linear-gradient(135deg,#d6c4ff,#ffd1d8)', glyph:'✦', installs:'47.3k', rating:4.9, tags:['AI','Featured'] }, { name:'Pomodoro Glass', author:'flux.app', desc:'Ambient timer that lives in your sidebar. Subtle, focused.', accent:'linear-gradient(135deg,#ffe5b8,#ec6a8e)', glyph:'◷', installs:'9.1k', rating:4.5, tags:['Productivity'] }, { name:'Localhost Console', author:'devhabit', desc:'Inline preview & logs for any dev port. Toggle from omnibar.', accent:'linear-gradient(135deg,#0e0d0c,#4fb59a)', glyph:'❯_', dark:true, installs:'7.6k', rating:4.7, tags:['Developer'] }, { name:'Lookbook', author:'studio.bento', desc:'Collect screenshots & swatches as you browse. Boards live in ELY.', accent:'linear-gradient(135deg,#ec6a8e,#7c6cf7)', glyph:'▥', installs:'14.0k', rating:4.8, tags:['Design'] }, ]; return (
ely://plugins/marketplace
{/* Hero */}
Plugins · Native to ELY

Quiet tools.
Everyday magic.

A small, curated marketplace built for ELY — sandboxed, theme-aware, no Chrome extension framework required. Each plugin ships with its own tweakable controls in your sidebar.
Search 184 plugins… ⌘K
Editor's pick
ELY AI · Summon
by ELY Studio · 47.3k installs
Ask anything about the current page with citations.
Install Open detail ⭐︎ 4.9 · 1,241 reviews
{/* Cats */}
{cats.map((c,i)=>( {c} ))} Sort: Most installed
{/* Plugin grid */}
{plugins.map((p,i)=>(
{p.glyph} {p.tags.includes('Featured') && FEATURED}
{p.name}
{p.author}
Get
{p.desc}
★ {p.rating} · {p.installs} installs Sandboxed
))}
{/* Plugin detail (preview / featured below) */}
Install · Free
Permissions
{[['Read content of pages you choose','✓'],['Store reading preferences locally','✓'],['Access network',' '],['Read browsing history',' ']].map(([t,c],i)=>(
{c} {t}
))}
Reading · Featured

Reader+

by ELY Studio · v2.4 · updated 3 days ago
★ 4.9
1,894 reviews

Reader+ pulls the article out of the noise. A serif type system, gentle ambient backgrounds, and a focus mode that quietly hides everything you don't need. Built native to ELY's plugin runtime — themes follow your wallpaper, settings live in the sidebar.

{[ ['Installs','24,521'],['Rating','4.9 / 5'],['Size','340 kB'],['Sandboxed','Yes'] ].map(([k,v])=>(
{k}
{v}
))}
What it adds to ELY
{[ ['Reader sidebar', 'Outline, time-to-read, table of contents — themed to your wallpaper.'], ['Ambient mode', 'Subtle background motion sourced from the article\'s lead image.'], ['Pocket-style queue', 'Save for later that lives in ELY\'s reading list, not a third-party app.'], ].map(([t,d],i)=>(
{t}
{d}
))}
);}; window.PluginsScreen = PluginsScreen;