The InstaYolo Chrome extension is live — one right-click to save any Instagram post
The InstaYolo Chrome extension is approved and live on the Chrome Web Store. Install it once; after that, any Instagram link on any site you're already browsing is one right-click away from a download. Here's what it does, what it doesn't do, and why we took the long way to a 3.8 KB zip.
What it does, in one sentence
Right-click any Instagram post / reel / story link — in your Twitter feed, in an email, in a Slack thread, anywhere — choose “Download link with InstaYolo” from the context menu, and a new tab opens on instayolo.com with the URL prefilled and the download already starting. Two clicks instead of four.
The toolbar icon works too: click it from any Instagram tab to send the current page into the same flow, or paste a URL manually if you prefer. Same result either way.
Install from the Chrome Web Store: https://chromewebstore.google.com/detail/instayolo-%E2%80%94-instagram-dow/pgpfcpeppmgfkfofjkdjhidjomkgmahi
What it doesn't do
No background tracking. The extension service worker wakes up when you click the context menu item; it does not monitor your browsing, it does not talk to our servers, it does not have a heartbeat. If you uninstall it and fully read the network trace during the time it was installed, you'd see zero outbound calls we made on our own initiative.
No hidden permissions. We ask for `contextMenus` (to add the right-click option), `tabs` (to open a new tab to instayolo.com with the URL prefilled), and host access scoped to https://www.instagram.com/* so the right-click option only appears on Instagram pages. That's it. No storage, no cookies, no webRequest, no remote scripts. The extension source is in our public repo — auditable end to end.
No pop-up ads. No referral redirects. No “upgrade to pro.”
Why it took us this long
The technical piece was done in one evening — context menu + tab creation is a 50-line extension. What took the extra month was the philosophical question: if everyone can just install the extension, are we undermining instayolo.com's pageview-based ad model by moving the transaction out of the browser?
The answer turned out to be no, for a reason that only became obvious once we drew it out. Every extension action still ends on instayolo.com. The extension is a shortcut, not a replacement. Users who install it visit the site slightly less often per month (one fewer paste step) but visit more reliably because the friction is lower. Our internal modeling — based on how browser-extension-adjacent sites generally see sustained engagement after extension adoption — suggested net-positive retention.
So we shipped. Version 1.0.0. If Meta changes something that breaks it, we'll push a 1.0.1.
For the curious: 3.8 KB
The full zip we uploaded to the Chrome Web Store is 3,840 bytes. Eight files: manifest.json, background service worker (1.3 KB), popup HTML + JS (2.3 KB each, mostly whitespace and the three buttons), three PNG icons at 16/48/128 px.
No bundler. No framework. No analytics SDK. Just vanilla HTML/CSS/JS. This isn't minimalism as a fashion choice — it's that we couldn't find a feature that justified adding anything else. Which is the right answer for a two-button extension.
What to do if it stops working
Email [email protected]. Or open an issue on our repo. Or just use the site directly — pasting still works, always will.
We don't expect breakage from our side. The extension does one tiny thing and doesn't depend on any moving piece more complex than Chrome's context-menu API, which has been stable since Manifest v3 shipped in 2021. The most likely cause of future breakage is Instagram URL format changes, in which case the fix is the same four-line update you'd expect.
FAQ
- Does the extension work in Firefox / Safari / Edge?
- We built to Manifest V3, which is native in Chrome and Edge (both Chromium). Brave, Opera, Arc also work via Chrome Web Store install. Firefox has an MV3 compat mode but we haven't tested there yet — if you want Firefox support specifically, email [email protected] and we'll prioritize.
- Is the extension open source?
- Yes — the extension/ directory of our GitHub repo contains the full source, and the Chrome Web Store zip is a straight pack of that directory. Version tags on the repo correspond to Store versions.
- Will you add more features?
- Maybe, but conservatively. On the list: a keyboard shortcut (Alt+I) to send the current IG tab, an options page to preset default quality, and a local-only history of recent parses. Features that require new permissions are off the table unless they're clearly worth the privacy cost.
- Can the extension work without Instagram being open in the active tab?
- Yes — right-click on any link that points to instagram.com/p/, /reel/, /reels/, /tv/, or /stories/, anywhere. The context-menu option is scoped to Instagram URLs specifically, so it only appears where it's relevant.