Does anyone have any experience with successfully creating and monetizing chrome extensions? I'm looking into doing this and want to see what I'm up against and if this is feasible.<p>Also, being that chrome extensions are comprised of just HTML/CSS/Javascript, anyone can easily view and replicate the source code and compete against you. The only way that I know to circumvent this is to have your chrome extension interface with your server, where the actual functionality is hosted.<p>What are your thoughts and experiences on this?
Chrome extensions are just another interface to a web app. They're easy to reproduce by another hacker, but most people won't bother reverse-engineering an extension just to get it for free. You'll probably sell product to people who don't know how to do that, anyway.<p>If you're concerned about it, then just make sure the IP doesn't live entirely in the extension itself with a simple third-party authentication & payment system.<p>There are more than a few companies set up like this already. SalesLoft started as a paid Chrome extension!
> Also, being that chrome extensions are comprised of just HTML/CSS/Javascript, anyone can easily view and replicate the source code and compete against you. The only way that I know to circumvent this is to have your chrome extension interface with your server, where the actual functionality is hosted.<p>I wouldn't worry about this. If a competitor literally uses your code that's copyright infringement. For the vast major of apps you don't need to look at their code to figure out how to replicate them anyway. Minifying your code will make it unpleasant enough to look at the source files.
minify your css, uglify your js and you're good to go.
the visual part of your code will be available anyway, that's how the browser knows how to render your app.<p>when i comes to monetize, that depends on what kind of application you're making, just like a website you can use freemium model, a premium one, you can run ads on it.. as i said, it greatly depends on the type of extension you're creating
Two pure chrome extensions off top of my head that I know people pay for:
<a href="https://www.vysor.io/" rel="nofollow">https://www.vysor.io/</a>
<a href="http://ghostforchat.com/" rel="nofollow">http://ghostforchat.com/</a>