Privacy Crawler

Crawls a website for cookies and fingerprinting

Cos'è Privacy Crawler?

Privacy Crawler è un'estensione di Chrome sviluppata da privacy-crawler, e la sua funzione principale è "Crawls a website for cookies and fingerprinting".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Privacy Crawler

Scarica i file di estensione Privacy Crawler in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Privacy Crawler recursivly follows links from page(s), and produces a report showing

  - what cookies first appeared at what page, together with their domains, expiry times and values;
  - what Javascript is accessed that could be used to fingerprint the browser.

**Warnings and recommendations**

When starting to crawl, this extension will **delete all cookies** in the current environment. It is recommended to run crawls in incognito mode to avoid logging you out from all of your sites.

It also patches the Javascript environment to

  - determine which functions and objects are accessed;
  - make time faster, since some trackers are set to load pixels and Javascript after a delay, and crawling takes too long if we waited in real time.

Therefore to avoid strange behaviour on sites, it's recommended to only have this extension enabled when you are crawling.                    

Informazioni di Base sull'Estensione

Nome Privacy Crawler Privacy Crawler
ID jjbajbapndkiabncgdklkifljmcjhldk
URL Ufficiale https://chromewebstore.google.com/detail/privacy-crawler/jjbajbapndkiabncgdklkifljmcjhldk
Descrizione Crawls a website for cookies and fingerprinting
Dimensione del File 29.74 KB
Conteggio Installazioni 488
Versione Corrente 0.7
Ultimo Aggiornamento 2018-06-10
Data di Pubblicazione 2018-06-10
Sviluppatore privacy-crawler
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/uktrade/privacy-crawler
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "images\/paws_dark.png",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "instrument.js",
                "helpers.js",
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "description": "Crawls a website for cookies and fingerprinting",
    "icons": {
        "541": "images\/paws_dark.png"
    },
    "name": "Privacy Crawler",
    "permissions": [
        "cookies",
        "downloads",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "incognito": "split",
    "version": "0.7"
}