npx -y @kickbacksai/install
Click to copy
Choose what
you share.
Earn from
better matches.
Choose how V2 matches ads
Private Mode
Basic, pseudonymous information only. Your work never leaves your machine.
- ✓Ad shown, visible time, clicks
- ✓Pseudonymous UID, hashed email
- ✓Truncated IP address & device basics
- ✓Approximate location
Boosted Mode
Share more, earn more — this mode shares a lot (everything below).
- ✓Everything shared in Private Mode
- ✓Your recent prompts & conversation
- ✓The model's replies & generated output
- ✓Titles & recent prompts of your other open sessions on this machine
- ✓File types & repo name
- ✓Your recent work topics — kept as a rolling interest profile on our servers
Partners get a cleaned copy, not your raw text. Privacy Policy §6
How it works
The useful version.
Pick your lane. V2 builds a small context payload, attempts to strip obvious sensitive material, replaces identifying details with limited IDs, and sends only that reduced version into the ad marketplace. If a paid developer ad wins, the extension shows a tiny sponsored line and you earn from qualifying views.
We ask our ad partners for the highest-earning ads that make sense next to a coding session — developer tools, AI infrastructure, APIs, cloud services.
Warnings
In plain English, here's the deal.
Here is the short version of what Kickbacks.ai V2 does and what you agree to. The Terms of Service are what actually bind you, so read those before you install.
To show the sponsored line, Kickbacks.ai edits the part of Claude Code and VS Code that draws the status line. The patch is built to be fully reversible and is checked against your editor version so it does not disrupt your work. It is still a real change to software on your machine, not a cloud setting, and we cannot promise it will never conflict with something else.
Kickbacks.ai is a third-party extension, not built, endorsed, or partnered with Anthropic, Microsoft, OpenAI, or GitHub. Their terms may not allow this, and they can block or break it at any time.
What an ad pays is set by live bidding, not by us, so it differs for everyone and some periods you may earn nothing. Only genuine human views during a request you started count — automated or farmed activity earns nothing and can void earnings. See the FAQ; Terms §6 and §9 control.
If this is a work machine, make sure your employer is fine with software that changes your editor and shows ads. That part is on you.
Limitations
Two limits, up front.
Better you know them now than after you install.
We transfer earnings through Stripe Connect, so you need to complete its onboarding and be in a country it supports. If yours isn't covered yet, earnings still accrue and become payable if that changes.
Check whether your country is supported →In the EEA, the UK, and Switzerland we don't share context with outside ad partners, so Boosted Mode is paused there and only first-party ads serve. We plan to open these regions once we can do it properly.
Install
Install the V2 VSIX.
Paste the command into Claude or run it in your terminal. It downloads the
signed VSIX, checks it, and installs it into every editor it finds (VS Code, Cursor,
VSCodium). Reload each editor, then run Kickbacks: Sign in. To target just
one, add --editor code, --editor cursor, or --editor codium.
npx -y @kickbacksai/install
No Node, or npx acting up? Use the traditional curl method instead. These commands call your editor's own binary — on macOS the code shim on PATH can belong to Cursor and quietly install into the wrong editor. On Linux or WSL, use the npx command above.
curl -fsSL https://kickbacks.ai/v2-vsix -o kickbacks-v2.vsix && "/Applications/Visual Studio Code.app/Contents/Resources/app/bin/code" --install-extension kickbacks-v2.vsix --force
curl -fsSL https://kickbacks.ai/v2-vsix -o kickbacks-v2.vsix && "/Applications/Cursor.app/Contents/Resources/app/bin/cursor" --install-extension kickbacks-v2.vsix --force
curl.exe -fsSL https://kickbacks.ai/v2-vsix -o kickbacks-v2.vsix; if ($?) { & "$env:LOCALAPPDATA\Programs\Microsoft VS Code\bin\code.cmd" --install-extension kickbacks-v2.vsix --force }