Three design choices govern how every PlugMonkey extension handles your data. They are deliberate and load-bearing — almost everything else follows from them.
1. Local-first storage. Always the default. Often the only option.
Eight of our ten Chrome extensions store everythingin your browser's local storage and transmit no user-generated content anywhere outside the platform the extension targets. That is: X Unfollow Pro, Instagram Unfollow Pro, X Followers Exporter Pro, Instagram Followers Exporter Pro, LinkedIn Connection Remover Pro, Video Downloader Pro, Reddit Scout Pro, and TradingView Screener Pro all use only chrome.storage.local — never chrome.storage.sync.
The remaining two — Prompt Anything Pro and ReadMonkey Pro — use chrome.storage.sync only for compact per-user state that should travel with your Chrome profile across devices: in PAP, your API keys, custom templates, and default provider; in ReadMonkey, your article metadata (titles, URLs, excerpts, tags), reading prefs, and the text highlights and notes you make on saved articles. Sync storage is encrypted at rest by Chrome under your Google account. Large user-generated content — your prompt history in PAP, your saved article bodies in ReadMonkey — stays in chrome.storage.local on the device where you saved it. In PAP, the Personal Info store also defaults to local; Chrome sync is opt-in only.
2. No PlugMonkey accounts. Ever. License keys carry entitlement, nothing else.
You will never be asked to create a PlugMonkey account, sign in, or link an identity to use any of our extensions. PRO entitlements are represented as a license key you receive after purchase — a short string the extension stores locally and validates against license.plugmonkey.xyz periodically. We do not maintain user profiles, behavioral histories, cohort tags, or any other server-side record beyond what is strictly required to validate a license. This is a deliberate architectural choice: we cannot leak data we never collect in the first place.
3. No third-party sharing unless YOU explicitly chose it.
Our extensions do not opportunistically send your data anywhere. The only third-party data flow that exists across the product line is the one in Prompt Anything Pro, and even there, it is always user-initiated and user-configured: you choose which AI provider to use, you supply your own API key for that provider, and only then are your prompts routed to that provider on the requests you yourself trigger.
For everything else — features, browsing, in-extension activity — we do not share, sell, broker, or otherwise transmit your data to any third party. The telemetry mentioned elsewhere in this policy is the Chrome Web Store's official extension analytics program, which Google provides to all extension developers for aggregate usage diagnostics; we don't add additional analytics packages on top of it inside the extensions.