Paradox - Privacy Awareness Tool

Helping People make Privacy Decisions

Hvad er Paradox - Privacy Awareness Tool?

Paradox - Privacy Awareness Tool er en Chrome-udvidelse udviklet af http://privacyparadox.co.uk, og dens hovedfunktion er "Helping People make Privacy Decisions".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Paradox - Privacy Awareness Tool-udvidelses-CRX-fil

Download Paradox - Privacy Awareness Tool-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Paradox - Privacy Awareness Tool Paradox - Privacy Awareness Tool
ID mbdalgoachccbfodfghhdgaepgkdaoke
Officiel URL https://chrome.google.com/webstore/detail/paradox-privacy-awareness/mbdalgoachccbfodfghhdgaepgkdaoke
Beskrivelse Helping People make Privacy Decisions
Filstørrelse 124 KB
Antal Installationer 34
Nuværende Version 1.1.2
Senest Opdateret 2020-09-01
Udgivelsesdato 2020-03-29
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler http://privacyparadox.co.uk
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://privacyparadox.co.uk
Hjælpeside-URL https://privacyparadox.co.uk/using-paradox
URL til Fortrolighedspolitik Side https://privacyparadox.co.uk/privacy-policy
Understøttede Sprog 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"
    ]
}