Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
linkedin-extension-fingerprinting | Kitploit
Tools/GitHubGitHub/mdp/linkedin-extension-fingerprinting
OSINT (Open Source Intelligence)ReconnaissanceData ExfiltrationInformation GatheringWeb SecurityPrivacyFingerprint Spoofing
GitHubmdp/linkedin-extension-fingerprinting

linkedin-extension-fingerprinting

View Repository
215156 months agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

LinkedIn Chrome Extension Fingerprinting

LinkedIn silently probes for 2,953 Chrome extensions on every page load.

Background

This repository documents every extension LinkedIn checks for and provides tools to identify them.

Data

The complete list of extensions with names and Chrome Web Store links:

chrome_extensions_with_names_all.csv

ColumnDescription
Extension ID32-character Chrome extension identifier
NameExtension name
URLLink to Chrome Web Store or Extpose

Scripts

fetch_extension_names.js

Fetches extension names from Chrome Web Store with Extpose fallback for removed/unavailable extensions.

root@kitploit:~
# Fetch all extensions
node fetch_extension_names.js

# Fetch a subset (useful if rate limited)
node fetch_extension_names.js --offset 0 --limit 500
node fetch_extension_names.js -o 500 -l 500

# Show help
node fetch_extension_names.js --help

test_fetch.js

Test script that processes the first 3 extensions with verbose output.

root@kitploit:~
node test_fetch.js

Stats

  • 2,953 total extensions in LinkedIn's fingerprint list
  • ~78% found on Chrome Web Store
  • ~22% found via Extpose fallback (removed or unavailable on Chrome Web Store)

Source Files

  • chrome_extension_ids.txt - Raw list of extension IDs extracted from LinkedIn's fingerprint.js
  • fingerprint.js - LinkedIn's page script with the extensions (minified)
Download Tool