Compare commits
2 Commits
20dc18dd28
...
348c78612d
| Author | SHA1 | Date | |
|---|---|---|---|
|
348c78612d
|
|||
|
dc99dce485
|
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "tools-app",
|
||||
"version": "0.3.1",
|
||||
"version": "0.3.2",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "tools-app",
|
||||
"version": "0.3.1",
|
||||
"version": "0.3.2",
|
||||
"dependencies": {
|
||||
"lucide-vue-next": "^0.575.0",
|
||||
"vue": "^3.5.25",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "tools-app",
|
||||
"private": true,
|
||||
"version": "0.3.1",
|
||||
"version": "0.3.2",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
|
||||
@@ -224,7 +224,6 @@ onUnmounted(() => {
|
||||
v-model="clipboardContent"
|
||||
class="tool-textarea"
|
||||
placeholder="Clipboard content will appear here line by line..."
|
||||
readonly
|
||||
></textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -25,13 +25,13 @@ import { ArrowLeft } from 'lucide-vue-next'
|
||||
<section>
|
||||
<h2>2. Data Collection and Usage</h2>
|
||||
<p>
|
||||
The Tools App Extension is designed with privacy as a priority.
|
||||
The Tools App Extension is designed with privacy as a priority.
|
||||
<strong>We do not collect, store, or transmit any of your personal data to external servers.</strong>
|
||||
</p>
|
||||
|
||||
|
||||
<h3>Clipboard Data</h3>
|
||||
<p>
|
||||
The extension requires the <code>clipboardRead</code> permission to function.
|
||||
The extension requires the <code>clipboardRead</code> permission to function.
|
||||
It reads text from your clipboard <strong>only</strong> when you explicitly enable the "Clipboard Sniffer" tool in the Tools App web interface.
|
||||
</p>
|
||||
<ul>
|
||||
@@ -128,6 +128,7 @@ h1 {
|
||||
-webkit-background-clip: text;
|
||||
background-clip: text;
|
||||
color: transparent;
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
.last-updated {
|
||||
@@ -168,29 +169,35 @@ li {
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
strong {
|
||||
color: var(--text-strong);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
code {
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
padding: 0.2rem 0.4rem;
|
||||
border-radius: 4px;
|
||||
font-family: monospace;
|
||||
font-size: 0.9em;
|
||||
color: var(--text-strong);
|
||||
}
|
||||
|
||||
:global(:root[data-theme="dark"]) code {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
:global(html[data-theme="light"]) code {
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.privacy-container {
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
|
||||
.privacy-content {
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
|
||||
h1 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user