🔌 Plugins Fingerprint

Browser Plugin Detection

Plugin fingerprinting detects installed browser plugins and extensions, which can uniquely identify your browser configuration.

🔬 Plugin Detection

// Legacy plugin detection
for (let i = 0; i < navigator.plugins.length; i++) {
    console.log(navigator.plugins[i].name);
    console.log(navigator.plugins[i].filename);
    console.log(navigator.plugins[i].description);
}

📊 What's Detected

🔍 Extension Detection

Extensions can be detected through:

🛡️ Antidetect Handling

Antidetect browsers typically report a standard set of plugins matching the spoofed browser, hiding any additional extensions.

🔗 Related Terms

Navigator Properties User Agent
Start Trial