privacy-policy.html
1 <!DOCTYPE html> 2 <html lang="en"> 3 4 <head> 5 <meta charset="UTF-8"> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 7 <title>Privacy Policy - BrowserEQ v2</title> 8 <!-- Google Font imports --> 9 <link rel="preconnect" href="https://fonts.googleapis.com"> 10 <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> 11 <link 12 href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Space+Mono:wght@400;700&display=swap" 13 rel="stylesheet"> 14 15 <!-- External stylesheet --> 16 <link rel="stylesheet" href="styles.css"> 17 <style> 18 .privacy-container { 19 max-width: 800px; 20 margin: 0 auto; 21 padding: 20px; 22 line-height: 1.6; 23 } 24 25 .privacy-container h1 { 26 text-align: center; 27 margin-bottom: 30px; 28 } 29 30 .privacy-container h2 { 31 margin-top: 30px; 32 border-bottom: 1px solid #e2b241; 33 padding-bottom: 10px; 34 } 35 36 .privacy-container ul { 37 padding-left: 20px; 38 } 39 40 .privacy-container ul li { 41 margin-bottom: 10px; 42 } 43 44 .back-button { 45 display: inline-block; 46 margin: 20px 0; 47 padding: 10px 15px; 48 background-color: #e2b241; 49 color: #212121; 50 text-decoration: none; 51 border-radius: 4px; 52 font-weight: bold; 53 transition: all 0.3s ease; 54 } 55 56 .back-button:hover { 57 background-color: #c29b37; 58 } 59 </style> 60 </head> 61 62 <body> 63 <header> 64 <div class="wave-decoration"></div> 65 <div class="container"> 66 <div class="header-content"> 67 <div class="logo-container"> 68 <img src="images/logo.png" alt="BrowserEQ Logo" class="logo"> 69 </div> 70 <div class="subtitle-container"> 71 <p class="mono-subtitle">« Privacy Policy »</p> 72 </div> 73 </div> 74 </div> 75 </header> 76 77 <main class="privacy-container"> 78 <a href="index.html" class="back-button">← Back to Main Page</a> 79 80 <h1>BrowserEQ V2 Privacy Policy</h1> 81 82 <p><em>Last Updated: <span id="currentDate"></span></em></p> 83 84 <h2>Overview</h2> 85 <p>BrowserEQ V2 is an audio equalizer Chrome extension that gives users control over how audio sounds in their 86 browser. We are committed to protecting your privacy and ensuring transparency about how our extension 87 functions.</p> 88 89 <h2>Data Collection and Usage</h2> 90 <p><strong>BrowserEQ V2 does not collect, store, or transmit any personal information or browsing data.</strong> 91 </p> 92 <p>Specifically:</p> 93 <ul> 94 <li>We <strong>do not</strong> collect any personal information</li> 95 <li>We <strong>do not</strong> track your browsing history</li> 96 <li>We <strong>do not</strong> store or transmit audio content</li> 97 <li>We <strong>do not</strong> use analytics or tracking tools</li> 98 <li>We <strong>do not</strong> share any data with third parties</li> 99 </ul> 100 101 <h2>Local Storage Usage</h2> 102 <p>BrowserEQ V2 stores the following data locally on your device only:</p> 103 <ul> 104 <li>EQ settings and preferences</li> 105 <li>Custom presets you create</li> 106 <li>UI state preferences (minimized state, selected filters)</li> 107 </ul> 108 <p>This data remains on your device and is only used to preserve your settings between browser sessions.</p> 109 110 <h2>Permissions Explained</h2> 111 <p>Our extension requests the following permissions, and here's why each is needed:</p> 112 <ul> 113 <li><strong>tabCapture</strong>: Required to access and process audio from browser tabs</li> 114 <li><strong>storage</strong>: Needed to save your EQ settings locally</li> 115 <li><strong>tabs</strong>: Used to apply audio processing to the active tab</li> 116 <li><strong>activeTab</strong>: Ensures the extension only affects the tab you're currently using</li> 117 <li><strong>scripting</strong>: Enables the extension to apply audio processing correctly</li> 118 <li><strong>host_permissions</strong>: Allows the extension to function across all websites where you want 119 audio enhancement</li> 120 </ul> 121 <p>These permissions are used solely for the core audio processing functionality of the extension and not for 122 collecting any user data.</p> 123 124 <h2>Audio Processing</h2> 125 <p>All audio processing happens locally (on your computer):</p> 126 <ol> 127 <li>Audio from the browser tab is captured</li> 128 <li>The audio is processed through our equalizer filters locally</li> 129 <li>The processed audio is played back in real-time</li> 130 <li>No audio data is ever sent to external servers or stored</li> 131 </ol> 132 133 <h2>Changes to This Policy</h2> 134 <p>We may occasionally update this Privacy Policy. When we do, we will revise the "Last Updated" date above.</p> 135 136 <h2>Contact</h2> 137 <p>If you have any questions or concerns about this Privacy Policy or our extension, please contact us through 138 our <a href="https://github.com/berraknil/BrowserEQ-V2">GitHub repository</a>.</p> 139 140 <h2>Additional Resources</h2> 141 <p>For more information about how Chrome extensions work with your data, visit the <a 142 href="https://developer.chrome.com/docs/webstore/user_data/">Chrome Web Store User Data Privacy 143 page</a>.</p> 144 145 <a href="index.html" class="back-button">← Back to Main Page</a> 146 </main> 147 148 <footer> 149 <div class="container"> 150 <p>BrowserEQ v2 - <a href="https://berraknil.github.io">Berrak Nil</a></p> 151 </div> 152 </footer> 153 154 <script> 155 // Set the current date for the "Last Updated" field 156 document.getElementById('currentDate').textContent = new Date().toLocaleDateString(); 157 </script> 158 </body> 159 160 </html>