Paradox - Privacy Awareness Tool
Helping People make Privacy Decisions
Was ist Paradox - Privacy Awareness Tool?
Paradox - Privacy Awareness Tool ist eine Chrome-Erweiterung, die von http://privacyparadox.co.uk entwickelt wurde, und ihr Hauptmerkmal ist "Helping People make Privacy Decisions".
Erweiterungsscreenshots
Paradox - Privacy Awareness Tool-Erweiterungs-CRX-Datei herunterladen
Laden Sie Paradox - Privacy Awareness Tool-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Paradox helps users make privacy-based decisions by checking and comparing tracking methods against the privacy policy of the websites you visit, giving you complete transparency of use. We put you in control of making your own privacy decisions. The Paradox extension displays data being collected on you in real-time, and analyses privacy policies to put you in control of making informed privacy decisions.
Grundlegende Informationen zur Erweiterung
Name | |
ID | mbdalgoachccbfodfghhdgaepgkdaoke |
Offizielle URL | https://chrome.google.com/webstore/detail/paradox-privacy-awareness/mbdalgoachccbfodfghhdgaepgkdaoke |
Beschreibung | Helping People make Privacy Decisions |
Dateigröße | 124 KB |
Installationsanzahl | 34 |
Aktuelle Version | 1.1.2 |
Letztes Update | 2020-09-01 |
Veröffentlichungsdatum | 2020-03-29 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | http://privacyparadox.co.uk |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://privacyparadox.co.uk |
Hilfeseite URL | https://privacyparadox.co.uk/using-paradox |
URL der Datenschutzrichtlinien-Seite | https://privacyparadox.co.uk/privacy-policy |
Unterstützte Sprachen | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Paradox - Privacy Awareness Tool", "version": "1.1.2", "description": "Helping People make Privacy Decisions", "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "jquery-3.5.1.min.js", "content.js" ], "css": [ "paradox.css" ], "run_at": "document_end" } ], "browser_action": { "default_icon": "icons\/icon128.png", "default_popup": "public\/popup.html" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png", "192": "icons\/icon192.png" }, "background": { "persistent": true, "scripts": [ "background.js" ] }, "web_accessible_resources": [ "paradox.js", "public\/img\/logo.ico", "public\/img\/logo.svg", "public\/img\/tick.svg", "public\/img\/warning.svg" ], "permissions": [ "tabs" ] } |