guyrleech

Show names of installed Chrome Extensions

May 15th, 2020 (edited)
616
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Get-ChildItem -Path "$env:LOCALAPPDATA\Google\Chrome\User Data\Default\Extensions"|%{ $id=$_.name ;$r = $null; $r = Invoke-WebRequest -Uri "https://chrome.google.com/webstore/detail/$id" -EA silent; if( $r -and $r.PSobject.Properties[ 'Parsedhtml' ] ) { [pscustomobject]@{ 'id' = $id ; 'Extension' = $r.ParsedHTml.nameprop } } }|Out-GridView
Add Comment
Please, Sign In to add comment