-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinformation.html
54 lines (46 loc) · 1.71 KB
/
information.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quick Link - Information</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<p><a href="./index.html">← Back</a></p><br/>
<h3 class="title">Data Storage</h3>
<p>
All of your Q-links are stored locally in your browser
<a href="https://developer.chrome.com/docs/extensions/reference/api/storage">
storage
</a>.
The stored data is synced to your browser profile, meaning if you're logged in to your
browser account or have browser sync feature enabled, your Q-links will be available on
all devices where it's synced. Otherwise, the data is only available on the device where
it was created.
</p>
<br/>
<h3 class="title">Storage Capacity</h3>
<p>
As of June 2024, you can only store a maximum of 8KB of data due to limitations of the browser
storage API.
</p>
<br/>
<h3 class="title">Data Deletion</h3>
<p>
Stored data is deleted when you perform any of the following actions:
<ul>
<li>clear your browser's cache and cookies</li>
<li>sign out of your browser account</li>
<li>disable sync feature</li>
<li>uninstall the extension</li>
</ul>
</p>
<br/>
<hr/>
<p style="text-align: center;"><small>
by <a href="https://github.com/mufasa159" target="_blank">mufasa159</a> •
source code on <a href="https://github.com/mufasa159/quick-link" target="_blank">GitHub</a>
</small></p>
</body>