Roman Popovych — Full-Stack Software Engineer, creator of Abect Dev Tools

About Abect Dev Tools

A privacy-first collection of browser-based developer tools — built by an engineer, for engineers. No accounts, no uploads, no surprises.

Why This Project Exists

While working on a client project for a sock e-commerce brand, I needed to convert dozens of product photos to WebP. The first converter I found was buried in contextual ads — and after downloading, every filename had been renamed to that site's own domain. The next tool had a 5-file free tier limit. That afternoon I started building this.

The core problem is not any single tool — it is the pattern: mandatory uploads to unknown servers, watermarks on output, aggressive paywalls at exactly the moment you need to get work done, and no way to know what happens to client assets after upload. For anyone handling client files, that is not acceptable.

The goal was not to build another SaaS. It was to build a set of tools that work instantly, locally, and predictably — without relying on external services for anything the browser can already do.

How It Works — All Processing Stays in Your Browser

Every tool runs entirely client-side. When you drop a file, it is read by the File API directly in the browser tab — no network request is made. The Canvas API handles all image transformations: format conversion, compression, cropping, and quality adjustment. The result is exported via the Blob URL API as an in-memory download — again, no upload, no server round-trip.

You can verify this yourself: open DevTools → Network tab, drop a file into any tool, and watch. No file transfer requests will appear. The tools also work offline once the page has loaded.

Other APIs in use: Web Crypto API for collision-free file IDs, TypedArrays for binary ICO construction in the favicon generator, and JSZip for in-browser batch ZIP archives.

About the Creator

Roman Popovych
Roman Popovych
Full-Stack Software Engineer · Ukraine

3+ years building production-grade fintech systems where correctness and security are non-negotiable. I have shipped P2P lending platforms, KYC pipelines with biometric verification, banking API integrations (OAuth 2.0, PKCE), and hardened multi-instance infrastructure. Abect Dev Tools started in April 2026 as a practical fix to a frustrating afternoon — and turned into a project I keep building.

Fintech SystemsP2P LendingKYC & BiometricsNode.jsMongoDBRedisBanking APIsOAuth 2.0 / PKCEVPS HardeningmTLSZero TrustBrowser APIsCanvas API

Product Principles

Privacy-first
User data is processed locally whenever possible. Files never leave your device.
No mandatory backend
All core tools work offline and in-browser. A backend may appear for optional advanced features — never for the basics.
No registration required
Open a tool, use it, done. An account system may come later for optional features — using the tools will never require it.
No ads, no tracking by default
Analytics load only if you explicitly accept cookies via the consent banner.
Predictable behavior
Tools do exactly what they claim — no surprises, no hidden operations.
Optional AI features
Advanced features may use a backend someday, but the core tools never will.

Open Source

The full source code is publicly available on GitHub. Anyone can read the implementation, verify that no data is transmitted, and submit new tools. Contributions follow the project's core principles: prefer client-side execution, avoid unnecessary data transfer, keep implementations focused on a single task.

View project source on GitHub →

Contact & Profiles

Email: support@abect.com

Frequently Asked Questions

Is Abect Dev Tools completely free?
Yes — all tools are free with no usage limits, no paywalled tiers, and no watermarks. The site has no subscription model. Some future AI-powered features may require a backend, but every core tool will remain free and browser-based.
Do my files get uploaded to any server?
No. All processing happens entirely in your browser using the Canvas API and File API. Your files never leave your device. You can verify this by opening DevTools → Network tab while using any tool — no file transfer requests will appear. The tools also work offline after the page has loaded once.
Who built this and why?
Abect Dev Tools was built by Roman Popovych, a full-stack software engineer from Ukraine. The project started in April 2026 after a frustrating afternoon converting client photos: the first tool was buried in ads and renamed every downloaded file to its own domain, the next had a 5-file free tier limit. The goal was a unified toolkit that works instantly, locally, and without any of those friction points.
How can I contribute a new tool?
The project is open source. Contribution guidelines are defined in the repository — each tool must be browser-based, free, focused on a single task, and must not upload user data. Open an issue first if you are unsure whether a tool fits, then submit a pull request following the contribution guide.
What technologies power the tools?
All tools use modern browser APIs with no third-party processing services. Core APIs: Canvas API for image transformations and exports, File API for reading files locally, Blob URL API for in-memory downloads, Web Crypto API for unique ID generation, and TypedArrays for binary file construction (ICO format). JSZip handles in-browser batch ZIP archives.