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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
}