diff --git a/Script/Linkedin-Script/Readme.md b/Script/Linkedin-Script/Readme.md index 3de9566..fbc19b6 100644 --- a/Script/Linkedin-Script/Readme.md +++ b/Script/Linkedin-Script/Readme.md @@ -3,6 +3,8 @@ # Extract Larger Profile Photo (Must be activated when viewing a Linkedin Profile) javascript: + +``` var currentLocation = window.location.href; var newLocation = currentLocation + "detail/photo/"; window.location.replace(newLocation); @@ -13,12 +15,16 @@ javascript: var currentLocation = window.location.href; var newLocation = currentLocation + "detail/recent-activity/"; window.location.replace(newLocation); +``` # Find Account Via Email (Functionality removed by LinkedIn) javascript: + +``` var email = prompt("Please enter target's email address: "); var url = "https://www.linkedin.com/sales/gmail/profile/viewByEmail/" + email; window.open(url,"_self"); +``` Source by : https://github.com/sinwindie/OSINT/blob/master/LinkedIn/Bookmarklet%20Tools \ No newline at end of file