Privacy Crawler

Crawls a website for cookies and fingerprinting

什麼是Privacy Crawler?

Privacy Crawler是由privacy-crawler開發的Chrome擴展程式,該擴展的主要功能是“Crawls a website for cookies and fingerprinting”。

擴展截圖

screenshot

下載Privacy Crawler擴展crx文件

下載Privacy Crawler擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Privacy Crawler Privacy Crawler
ID jjbajbapndkiabncgdklkifljmcjhldk
官方網址 https://chromewebstore.google.com/detail/privacy-crawler/jjbajbapndkiabncgdklkifljmcjhldk
簡介 Crawls a website for cookies and fingerprinting
檔案大小 29.74 KB
安裝次數 488
目前版本 0.7
更新時間 2018-06-10
上架時間 2018-06-10
開發者 privacy-crawler
付費類型 free
擴展官網 https://github.com/uktrade/privacy-crawler
支援的語言 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"
}