Compare commits

..

1 Commits

Author SHA1 Message Date
1dae3f6db8 Add a button to deselect all stolen data entries 2025-12-14 09:07:54 +01:00
3 changed files with 12 additions and 7 deletions

View File

@ -36,7 +36,15 @@ export function StolenData({
return ( return (
<div className="stolen-data-container"> <div className="stolen-data-container">
<span>Domeny{detailsVisibility ? ' oraz przesłane informacje' : null}</span> <span>Domeny{detailsVisibility ? ' oraz przesłane informacje' : null}</span>
<br />
<button
onClick={() => {
clusters.forEach((cluster) => cluster.undoMark());
}}
style={{ marginTop: '8px', lineHeight: '32px' }}
>
Odznacz wszystkie
</button>
{clusters.map((cluster) => { {clusters.map((cluster) => {
return ( return (
<StolenDataCluster <StolenDataCluster

View File

@ -3,7 +3,7 @@
"manifest_version": 2, "manifest_version": 2,
"name": "Rentgen", "name": "Rentgen",
"short_name": "Rentgen", "short_name": "Rentgen",
"version": "0.2.2", "version": "0.2.1",
"author": "Kuba Orlik, Arkadiusz Wieczorek (Internet. Time to act! Foundation)", "author": "Kuba Orlik, Arkadiusz Wieczorek (Internet. Time to act! Foundation)",
"homepage_url": "https://git.internet-czas-dzialac.pl/icd/rentgen", "homepage_url": "https://git.internet-czas-dzialac.pl/icd/rentgen",
"background": { "background": {
@ -39,10 +39,7 @@
"browser_specific_settings": { "browser_specific_settings": {
"gecko": { "gecko": {
"id": "rentgen@internet-czas-dzialac.pl", "id": "rentgen@internet-czas-dzialac.pl",
"strict_min_version": "91.1.0", "strict_min_version": "91.1.0"
"data_collection_permissions": {
"required": ["none"]
}
} }
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "rentgen", "name": "rentgen",
"version": "0.2.2", "version": "0.2.1",
"description": "Rentgen is an add-on prepared for both Firefox-based and Chromium-based browsers. This extension will automatically visualize all the data that a given website sends to third parties.", "description": "Rentgen is an add-on prepared for both Firefox-based and Chromium-based browsers. This extension will automatically visualize all the data that a given website sends to third parties.",
"main": "esbuild.config.js", "main": "esbuild.config.js",
"type": "module", "type": "module",