Privacy Policy for Hold My Beer Chrome Extension


1. Introduction

   Hold My Beer is a Chrome extension designed to store links, images, and files locally within your browser. This privacy policy outlines how we collect, use, and protect your data.


2. Data Collection and Storage

   All data stored by Hold My Beer is kept locally on your device using Chrome's local storage API. We do not collect, transmit, or store any of your data on external servers.


   2.1 Types of data stored:

   - Links and text snippets

   - Images (stored as data URLs)

   - Files (stored as data URLs)

   - Dark mode preference


   Reference to data storage implementation:

    // Load saved links

    chrome.storage.local.get('links', function(result) {

        if (result.links) {

            links = result.links;

            renderLinks();

        }

    });