Last updated: 31 July 2026
chrome.storage.local: whether
the microphone toggle is on, and the ID of the Drive folder the extension created, so the
same folder is reused instead of creating duplicates.
Nothing else is stored, and none of it leaves your browser on its own.
When you press the connect button, the extension asks Chrome for an OAuth token for the
Google account you choose. It requests a single scope:
https://www.googleapis.com/auth/drive.file.
This is a deliberately narrow scope. It grants access only to files the extension itself creates. The extension cannot read, list, modify, or delete any other file in your Drive, and it never sees the rest of your Drive contents.
You can revoke this access at any time from your Google account permissions page, or with the sign-out button in the extension.
An upload happens only when you explicitly press the upload button on the preview page. The
file is transferred directly from your browser to
www.googleapis.com — the Google Drive API — and lands in a folder the extension
creates in your own Drive. It does not pass through any server belonging to the developer,
because no such server exists.
If you tick the "anyone with the link can watch" option, the extension asks Drive to add a link-sharing permission to that one file. This is your choice per upload and is off by default.
storage — remembers the two preferences described aboveidentity — obtains the OAuth token for your own Google accounthttps://www.googleapis.com/* — lets the extension call the Google Drive API to
create its folder and upload the file. It is the only host the extension contacts
The extension requests no host permission for any website, so it cannot read or change the pages you browse.
ScreenRelay is not directed at children under 13 and collects no data from anyone.
If this policy changes, the updated version will be published at this address with a new date at the top. Material changes will also be noted in the extension's store listing.
Questions about this policy: screenrelay.app@gmail.com
Source code:
github.com/unalsemih/screenrelay