惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
雷峰网
雷峰网
S
SegmentFault 最新的问题
博客园 - 【当耐特】
博客园_首页
量子位
爱范儿
爱范儿
博客园 - 叶小钗
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
V
V2EX
美团技术团队
V
Visual Studio Blog
博客园 - 三生石上(FineUI控件)
IT之家
IT之家
Hugging Face - Blog
Hugging Face - Blog
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
博客园 - 聂微东
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Cloudflare Blog
宝玉的分享
宝玉的分享
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How I Cross-Promote 18 Chrome Extensions Without Annoying...
SHOTA · 2026-04-30 · via DEV Community

I publish Chrome extensions as a solo developer. I currently have 18 live extensions across two Chrome Web Store accounts, with more in development.

Each extension runs in isolation. A user who installs ReadMark has no reason to know that Japanese Font Finder exists — unless I tell them. This is the cross-promotion problem.

Done badly, cross-promotion is spammy: "You might also like..." banners competing with the actual UI, persistent notifications pushing other products, or promotional modals that appear on first launch. These damage trust and hurt retention.

Done well, cross-promotion is genuinely useful: surfacing a related tool at the moment a user is most likely to want it, in a way that doesn't interrupt their workflow.

Here's what I've implemented across my extensions and what actually works.

Where Cross-Promotion Lives

The four legitimate places I've found:

1. The onboarding screen

Every new extension I build has a welcome screen that appears once on first install. This is the highest-engagement moment — the user has just installed, they're curious, and they have no workflow to interrupt.

The bottom of the onboarding screen includes a "You might also like" section showing 2-3 related extensions from my portfolio. The slot is populated based on the category of the extension they just installed:

  • Productivity extensions → show other productivity tools
  • Developer tools → show developer tools
  • Japanese-language tools → show other Japan-focused tools
const RELATED_BY_CATEGORY: Record<Category, ExtensionInfo[]> = {
  productivity: [
    { name: 'ReadMark', cws: 'https://chromewebstore.google.com/...', icon: '...' },
    { name: 'FocusGuard', cws: 'https://chromewebstore.google.com/...', icon: '...' },
  ],
  'developer-tools': [
    { name: 'Japanese Font Finder', cws: '...', icon: '...' },
    { name: 'DataBridge', cws: '...', icon: '...' },
  ],
  // ...
};

Enter fullscreen mode Exit fullscreen mode

Conversion rate on this slot: ~8%. It's the best-performing placement I have, and it requires zero additional interruption — the user is already looking at an onboarding screen.

2. The settings/options page

My extensions all have a settings page accessible via the popup or options page. At the bottom, a small "Other tools by the same developer" section.

This placement has low visibility — most users never open settings — but high intent. Someone exploring settings is an engaged user. Conversion here is ~4%.

3. Post-export or post-action moments

Some extensions have natural completion moments. Procshot, for example, has a "Guide created" state after the user finishes recording a workflow. At this point, the task is done and the user has a second of cognitive slack.

I show a single inline suggestion: "Looking for complementary tools? Try [X]."

This feels contextually relevant rather than promotional. If someone just created a procedure guide, they might also like a tool that helps them organize notes or manage their workflow.

4. The Chrome Web Store listing itself

I include links to related extensions in the long description text of each CWS listing. The format:

---
Other tools you might find useful:
• ReadMark (save scroll position): [link]
• Procshot (create step-by-step guides): [link]

Enter fullscreen mode Exit fullscreen mode

CWS listing descriptions don't support hyperlinks that are clickable, but the URLs are visible and some users do copy and search them. More importantly, these listings show up in Google Search, which occasionally drives cross-traffic.

What I Don't Do

Push notifications: I have notifications permission on some extensions for functional purposes (session timers, etc.). I never use this for promotions. Push notifications are for urgent, functional information only.

In-session banners: No banners appear while the user is actively using the extension. The active state is for doing the thing, not for advertising other things.

Frequency-based nudges: No "You've been using this for 30 days — here are our other products" messages. I've seen this pattern from larger companies and I find it manipulative.

Email capture for cross-promotion: Chrome extensions don't have a natural email capture point, and I don't manufacture one. My extensions work without accounts.

Measuring It

I track cross-promotion clicks with GA4 events:

function trackCrossPromoClick(source: string, targetExtension: string): void {
  gtag('event', 'cross_promo_click', {
    source_location: source,      // 'onboarding' | 'settings' | 'post_action'
    target_extension: targetExtension,
  });
}

Enter fullscreen mode Exit fullscreen mode

The conversion from click to install is hard to measure directly — I can see the click in GA4 but I can't easily track what happens in the CWS after the user navigates there. I proxy this with CWS install trends: when I add a cross-promotion slot pointing to Extension X, does Extension X's weekly installs increase?

Over 12 weeks, the answer has been yes, modestly — about a 15-20% lift in weekly installs for extensions that are actively promoted from related extensions. Not explosive growth, but it compounds.

The Principle

Cross-promotion works when it answers the question "what else can help me with what I'm already trying to do?" It fails when it answers "what else can I sell this user?"

The onboarding screen converts at 8% not because users are gullible but because the recommended extensions are actually useful to someone who just installed a related tool. The relevance makes the difference.


I write about solo Chrome extension development at dev-tools-hub.xyz.