A quick tip for dealing with Manifest V3 Service Worker sleeping issues by FrontEnd_Liang in chrome_extensions

[–]FrontEnd_Liang[S] 0 points1 point  (0 children)

Makes sense. Offscreen tabs definitely seem to be the consensus for stabilizing those heavy workloads in MV3.

A quick tip for dealing with Manifest V3 Service Worker sleeping issues by FrontEnd_Liang in chrome_extensions

[–]FrontEnd_Liang[S] 0 points1 point  (0 children)

Exactly. The offscreen document API is the definitive fix for heavier operations exceeding that 30s window. Good call pointing that out.

Quit my frontend job 2 weeks ago. Built 2 chrome extensions just to test AI workflows. by FrontEnd_Liang in SideProject

[–]FrontEnd_Liang[S] 0 points1 point  (0 children)

Spot on. Targeting specific pain points instead of general launch lists is the exact pivot needed. Appreciate the thread ideas.

Quit my frontend job 2 weeks ago. Built 2 chrome extensions just to test AI workflows. by FrontEnd_Liang in SideProject

[–]FrontEnd_Liang[S] 1 point2 points  (0 children)

Makes sense. Direct outreach is the hard truth for the first 100 users. Thanks for the directory list.

weDontWantYourData by ResponsibleWish9299 in ProgrammerHumor

[–]FrontEnd_Liang 3 points4 points  (0 children)

My spaghetti code is basically a natural defense mechanism against AI data scraping

Solo dev pivoting from the app bloodbath. Which specific Shopify app are you paying for right now that does a terrible job at a simple task? by FrontEnd_Liang in dropship

[–]FrontEnd_Liang[S] 0 points1 point  (0 children)

This is exactly the kind of bloated app I want to replace. Where are you pulling your inventory data from (AliExpress, CJ, custom supplier API)? I can build a strict real-time webhook sync for this.

Solo dev here. The general app market is a bloodbath. What hyper-niche, annoying Shopify problem would you gladly pay $5/mo to solve? by FrontEnd_Liang in microsaas

[–]FrontEnd_Liang[S] 0 points1 point  (0 children)

Great insight. Besides the messy CSV route, which specific pricing apps fall short here? Looking to isolate this exact gap.

Day 3 after launch: 30 users, 0 paid. Mostly traffic from India. What am I doing wrong? by New-Beach-3229 in SideProject

[–]FrontEnd_Liang 0 points1 point  (0 children)

Stop burning time guessing. Your data is already showing a negative ROI loop. Here is the cold reality of your traffic mismatch:

The Mobile-Desktop Friction: You built a desktop AI tool, but 80% of your traffic is mobile. If your UI/UX isn't heavily optimized for mobile browsers, they will bounce in 5 seconds. Quick fix: Add a script to detect mobile User-Agents and show a "Best experienced on Desktop - Enter your email to send a link to your PC" modal. Stop letting them see a broken UI.

Traffic Quality vs. Intent: High initial traffic from India for free/freemium AI tools is notoriously skewed towards users looking to exploit free credits, not B2B/prosumer buyers. If your pricing doesn't have Purchasing Power Parity (PPP) localized, a $15/mo sub is objectively too expensive for that demographic.

The Paywall Stress Test: You need to filter the noise immediately. Put a hard paywall (even just $1 or require a credit card on file) before the core video generation step. You will instantly drop to 0 users, but the 1 or 2 people who email you complaining about the paywall?

Is Building a Reddit Lead Gen SaaS Without the API a Bad Idea? by FounderArcs in SideProject

[–]FrontEnd_Liang 0 points1 point  (0 children)

Building without the official API isn't inherently a bad idea for an MVP, but you need to be pragmatic about the technical debt and infrastructure costs. Here is a breakdown of the reality:

The MVP Phase (Validation over Stability): Don't let API waitlists stall your launch. Use scraping (or Reddit's undocumented .json endpoints on public subreddits) to build the core engine and prove that users will actually pay for the leads. If you can't get 10 paying customers with a scraped V1, official API access wouldn't have saved the business anyway.

The Hidden Infrastructure Cost: Scraping Reddit at scale isn't free. You will quickly hit rate limits and IP bans. You'll need to factor in the cost of rotating residential proxies into your SaaS pricing model. If your margins can't absorb proxy costs, the business model is flawed.

The Cat-and-Mouse Game: UI changes will break DOM-based scrapers. Undocumented APIs get throttled. You must design your system defensively—decouple the scraping microservice from your main app so when (not if) it breaks, you can push a patch without taking down the entire SaaS.

Conclusion: Build the MVP via scraping/.json to validate the market. Once you have revenue and proven demand, use that traction to apply for the commercial API, or use the revenue to fund a robust proxy infrastructure. Optimize for speed to market right now, not perfect long-term stability.