Plugora
Plugora
Home/Privacy Policy

Privacy Policy

Last updated: May 17, 2026

TL;DR
  • No personal data is ever collected by any Plugora extension.
  • No data is sent to external servers — everything stays in your browser.
  • No analytics, no tracking, no ads, no third-party services.
  • All extensions are fully open source — you can verify every line of code.

Overview

Plugora is a collection of open-source browser extensions built for productivity and automation. Privacy is a core design principle — not an afterthought. Every extension in this collection is built to operate entirely within your browser. No account is required, no data is transmitted, and no telemetry is collected.

What Each Permission Actually Does

activeTab

Grants temporary access to the tab you are currently viewing, only while the extension is active. No background access.

scripting

Allows the extension to inject a small script into the current page to perform actions like typing or clicking on your behalf.

storage

Saves your settings and data locally in your browser using chrome.storage.local. Nothing is sent to any server.

tabs

Reads tab metadata (title, URL, status) so the extension can list and manage your open tabs. Tab content is never read.

tabGroups

Creates and updates native Chrome tab groups. Used only for the auto-group and /group commands.

windows

Queries all open browser windows so tabs can be moved between them. No window content is accessed.

alarms

Schedules a periodic background check for idle tabs. No data is collected or transmitted during these checks.

Local Storage Only

When an extension saves your preferences or data, it uses chrome.storage.local — a browser-native storage API that keeps data exclusively on your device. This data is never synced to external servers and is automatically removed if you uninstall the extension.

No Third Parties

Plugora extensions do not integrate with any third-party services, analytics platforms, advertising networks, or data brokers. No external requests are made from any extension except where explicitly initiated by you (e.g. a tab navigating to a URL you chose).

Open Source & Verifiable

Every Plugora extension is fully open source. You do not have to take our word for it — you can read every line of code, inspect what permissions are used and why, and verify that no data leaves your browser. Trust through transparency.

Questions

If you have any questions about privacy or data handling, open an issue on GitHub or reach out directly via laugerr.github.io.