Your cloud storage silently bills you for every saved version of your files. DriveNest finds the offenders, quantifies the waste, and helps you reclaim it.
Google Drive + OneDrive Available on both connected clouds — called revision overhead on Google Drive and version overhead on OneDrive, matching each provider’s own terminology.
Version history overhead is the storage quota consumed by a file's saved versions beyond the size of the current file. Google Drive calls them revisions and OneDrive calls them versions; both bill them against your quota. On Google Drive, every saved version of non-Workspace files — PDFs, images, Office documents, ZIP files — is stored and billed against your quota, even though only the latest version is visible in Drive. Google Docs, Sheets, and Slides are exempt: their revision history does not count against quota. See the Google Drive Revisions API reference for the underlying data model.
The Revision Overhead panel on the Dashboard identifies the top offenders in your cloud storage: files where accumulated revision history consumes significantly more quota than the file itself. For each file DriveNest shows the total number of stored revisions, how many are marked keep forever (Google Drive only — pinned to never auto-expire), and the exact overhead in bytes. Tapping a file opens it in the Google Drive app or your browser, or in OneDrive on the web.
From the Revision Overhead panel, you can generate a Google Apps Script that deletes excess revisions for your top offenders using the Drive API v3. The script targets old and keep-forever revisions that are safe to remove, leaving the current version and a configurable number of recent versions intact. As with all DriveNest scripts, you review the full source before running it — nothing is deleted without your explicit action. See the Scripts page for how deployment works. On OneDrive there is no script to deploy — DriveNest runs version cleanup as an in-app action instead.
script.projectsRevision overhead refers to the extra storage quota consumed by a file's saved version history. Google Drive stores every version of non-Workspace files (PDFs, images, Office documents) and bills each version against your quota — even though only the current version appears in Drive. Over time, frequently edited files can accumulate tens or hundreds of versions, each consuming storage independently.
Non-Workspace files are the only ones that count against quota for revisions: PDFs, images (JPEG, PNG, etc.), Office documents (.docx, .xlsx, .pptx), ZIP archives, and other binary formats. Google Docs, Sheets, and Slides do not consume storage quota for revision history — their versions are stored in Google's infrastructure at no quota cost. Large, frequently edited files like project ZIP archives or master PDFs tend to be the biggest offenders.
Yes. Google Drive's API does not allow programmatically unpinning keep-forever revisions, but it does allow deleting them directly. The DriveNest revision cleanup script uses the Drive API v3 to delete excess revisions including keep-forever ones. You review the generated script in full before running it — DriveNest never executes any action on your files without your explicit approval.