Privacy Crawler

Crawls a website for cookies and fingerprinting

Privacy Crawler là gì?

Privacy Crawler là một tiện ích mở rộng Chrome được phát triển bởi privacy-crawler, và tính năng chính của nó là "Crawls a website for cookies and fingerprinting".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Privacy Crawler

Tải xuống các tệp mở rộng Privacy Crawler dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Privacy Crawler Privacy Crawler
ID jjbajbapndkiabncgdklkifljmcjhldk
URL Chính Thức https://chromewebstore.google.com/detail/privacy-crawler/jjbajbapndkiabncgdklkifljmcjhldk
Mô tả Crawls a website for cookies and fingerprinting
Kích Thước Tệp 29.74 KB
Số Lần Cài Đặt 488
Phiên Bản Hiện Tại 0.7
Cập Nhật Lần Cuối 2018-06-10
Ngày Phát Hành 2018-06-10
Nhà Phát Triển privacy-crawler
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/uktrade/privacy-crawler
Ngôn Ngữ Được Hỗ Trợ 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"
}