Paradox - Privacy Awareness Tool
Helping People make Privacy Decisions
Wat is Paradox - Privacy Awareness Tool?
Paradox - Privacy Awareness Tool is een Chrome-extensie ontwikkeld door http://privacyparadox.co.uk, en de belangrijkste functie is "Helping People make Privacy Decisions".
Extensie Screenshots
Download het CRX-bestand van de extensie Paradox - Privacy Awareness Tool
Download Paradox - Privacy Awareness Tool-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | mbdalgoachccbfodfghhdgaepgkdaoke |
Officiële URL | https://chrome.google.com/webstore/detail/paradox-privacy-awareness/mbdalgoachccbfodfghhdgaepgkdaoke |
Beschrijving | Helping People make Privacy Decisions |
Bestandsgrootte | 124 KB |
Aantal Installaties | 34 |
Huidige Versie | 1.1.2 |
Laatst Bijgewerkt | 2020-09-01 |
Publicatiedatum | 2020-03-29 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | http://privacyparadox.co.uk |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://privacyparadox.co.uk |
Help Pagina-URL | https://privacyparadox.co.uk/using-paradox |
URL van de Privacybeleid Pagina | https://privacyparadox.co.uk/privacy-policy |
Ondersteunde Talen | 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" ] } |