A product by testguard.app.
A Chrome extension (Manifest V3) that opens faucet.solana.com (devnet), fills in the wallet and amount, and tries to request an airdrop on a schedule.
After "Confirm Airdrop", the faucet shows a Cloudflare check ("Please complete the captcha…"). It usually passes automatically within a few seconds — you don't have to enter anything. So the bot waits for it to finish (up to 20s) and only then records the result (success/error). If the check gets stuck and actually shows an interactive captcha, the bot leaves the tab open so you can solve it manually. An interactive captcha cannot be bypassed automatically.
The faucet grants a higher airdrop limit to users who have connected their GitHub account. To get the maximum, do this once before running the bot:
- In the same browser where this extension is installed, open faucet.solana.com.
- Connect your GitHub account / repository there.
- You should see "Higher Airdrop Limit Unlocked!" confirming your GitHub account is connected.
This is a one-time action — once unlocked, the bot will request at the higher limit on every run.
- ⚙️ Configurable wallet, amount, and interval right in the popup — nothing is hardcoded anymore.
- 📋 Logs with timestamps: every step and the reason for any failure are visible.
- ✅ Real result check — the bot reports
successonly when the airdrop actually went through, otherwise it shows what failed. - ⏰ Shows the next scheduled run time.
- 🔔 A notification for every run's result.
The single manifest.json works across browsers: Chromium-based browsers use
the service_worker background, Firefox uses the scripts (event page)
background. Each browser may show a harmless warning about the key it doesn't
use.
| Browser | Status | Notes |
|---|---|---|
| Chrome | ✅ | — |
| Edge / Brave / Opera | ✅ | Chromium-based, installs the same way |
| Firefox | ✅ | Event-page background; you may need to grant the faucet.solana.com permission (see below) |
- Open
chrome://extensions(oredge://extensions,brave://extensions,opera://extensions). - Enable Developer mode (top-right).
- Click Load unpacked and select this folder.
- Open
about:debugging#/runtime/this-firefox. - Click Load Temporary Add-on… and select the
manifest.jsonin this folder. (Temporary add-ons are removed when Firefox restarts; to install permanently the extension must be signed/published on AMO.) - If airdrops don't run, open the add-on's permissions and grant access to
faucet.solana.com— Firefox treats MV3 host permissions as optional and asks you to allow them.
Click the extension icon:
- Recipient wallet — paste your devnet address and click 💾 Save settings.
- Amount / Interval — pick the amount and the interval in hours, then save.
- ▶ Run now — opens the faucet in a visible tab, fills the fields and clicks Confirm. If there is no captcha, the airdrop completes on its own; if there is, solve the captcha manually.
- Keep the faucet tab open — when enabled, the tab is not closed after a run. When a captcha is needed, the tab stays open anyway (on a manual run).
- The 📋 Logs panel shows what's happening; Clear wipes the history.
- Paste your address and click Save.
- Click Run now.
- The logs should show
Run (manual): … → …, followed by eitherRequest sent(success) or a specific error (for example,"Confirm Airdrop" button not found). - The status at the top shows ✅/
⚠️ /⏳ and the last/next run times.
Note: faucet.solana.com may apply rate limits / a captcha. The faucet's response text (success or failure) is read automatically and stored in the logs. A manual run opens the faucet tab in a visible window so you can see the response live.
Chrome re-reads popup.html/popup.js every time the popup opens, but
background.js (the service worker) only updates after you reload the
extension. If logs don't appear or the status shows stale data:
- Open
chrome://extensions. - Click the reload (↻) button on the extension card.
- Check that the version matches the latest in
manifest.json, and that the logExtension installed/updated — new code is activeappeared right away.
This is an independent tool for development on test networks (devnet). It is not affiliated with the Solana Foundation or any faucet. Devnet tokens have no monetary value. Many faucets prohibit automated access (this is why they use captchas) — you are responsible for complying with each faucet's terms. The Extension is provided as is, without warranty, and stores all data locally in your browser (nothing is collected or transmitted).
© 2026 testguard.app. CryptoDripster is developed and owned by testguard.app.
Free to use, copy, and store. You may not remove the company name, copyright notices, or links to testguard.app from the source code, the UI, the documentation, or any copy. All ownership rights belong to testguard.app. See LICENSE.
| File | Purpose |
|---|---|
manifest.json |
Extension manifest (MV3) |
background.js |
Service worker: scheduling, airdrop logic, logs |
popup.html / popup.js |
UI: settings, status, logs |
icons/ |
Extension icons |
TERMS.md / PRIVACY.md |
Terms of Use and Privacy Policy |
LICENSE |
License and ownership (testguard.app) |