Privacy Crawler

Crawls a website for cookies and fingerprinting

Privacy Crawlerคืออะไร?

Privacy Crawler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย privacy-crawler และคุณลักษณะหลักของมันคือ "Crawls a website for cookies and fingerprinting"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Privacy Crawler

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
}