P
plain.tools
ToolsLearnBlogCompareVerify claims

Browser Technology

Modern browsers are capable application platforms, not just document viewers. This category explains the technologies that enable local document processing: WebAssembly for near-native performance, the File API for local file access, and the security model that keeps your data protected. Understanding these technologies helps you evaluate claims about browser-based tools.

Frequently asked questions

Common questions about browser technology.

What is WebAssembly and why does it matter?

WebAssembly (Wasm) allows code written in languages like C++ to run in browsers at near-native speed. PDF libraries originally written for desktop applications can be compiled to WebAssembly, bringing full processing capabilities to the browser without plugins.

Can websites access files on my computer without permission?

No. Browsers enforce strict security: websites cannot read files unless you explicitly select them using a file picker or drag-and-drop. Even then, sites only receive the files you chose, not access to your file system.

How can I verify what a website is doing with my files?

Use browser developer tools (F12) to monitor network activity. The Network tab shows all data sent from your browser. If no file data appears in requests during processing, the tool is operating locally.

Related articles in the Learning Center

Reference material that covers these topics in more depth.