AmIUnique

An extension to follow the evolution of your browser fingerprint! Be notified as soon as a change is detected!

AmIUniqueคืออะไร?

AmIUnique เป็นส่วนขยายของ Chrome ที่พัฒนาโดย spirals-lille และคุณลักษณะหลักของมันคือ "An extension to follow the evolution of your browser fingerprint! Be notified as soon as a change is detected!"

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย AmIUnique ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Features

With this extension, we give you tools to better understand your browser fingerprint.
Keep track of your fingerprint's evolution through time! With your very own personalized timeline, you can retrace all the changes that took place since you install the extension. The addon will notify as soon as a change is detected. But that's not all! We plan to add in the near future new features to improve your anonymity with regard to fingerprinting.

Our mission

The AmIUnique.org website is launching its own extension to further improve our understanding of browser fingerprints! With more than 100,000 collected fingerprints on our website (and counting!), we learned a lot about the current diversity of fingerprints. However, a small piece of the puzzle is missing: an analysis of their temporal evolution. We do not know how they evolve and how fast they can change with time. This extension is the answer. With it, you help us collect daily data on your fingerprint to shed light on this relatively unknown subject.

Links

View your own fingerprint: https://amiunique.org/fp
Our statistics on the fingerprints we collected so far: https://amiunique.org/stats
Our collection of recommended tools: https://amiunique.org/tools

Do you have any issues to report or do you want to contribute?
Our repository is on Github: https://github.com/plaperdr/amiunique-extension-chrome                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ AmIUnique AmIUnique
ID pigjfndpomdldkmoaiiigpbncemhjeca
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/amiunique/pigjfndpomdldkmoaiiigpbncemhjeca
คำอธิบาย An extension to follow the evolution of your browser fingerprint! Be notified as soon as a change is detected!
ขนาดไฟล์ 164 KB
จำนวนการติดตั้ง 5,446
เวอร์ชันปัจจุบัน 1.0.9
อัปเดตครั้งล่าสุด 2021-02-16
วันที่เผยแพร่ 2020-02-17
คะแนน 5.00/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา spirals-lille
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://amiunique.org/
ภาษาที่รองรับ en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AmIUnique",
    "version": "1.0.9",
    "version_name": "1.0.9",
    "author": "Pierre Laperdrix",
    "description": "__MSG_description__",
    "homepage_url": "https:\/\/amiunique.org\/",
    "offline_enabled": false,
    "default_locale": "en",
    "permissions": [
        "https:\/\/amiunique.org\/*",
        "storage"
    ],
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/amiunique.org\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon-16.png",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_security_policy": "script-src 'self'; object-src 'self'"
}