Description: Looks for all installed extensions that are not made by Google.
What The Data Shows: Reduces the noise by excluding all Google extensions.
SQL:
SELECT username, directory, shell, type, name, version, locale, update_url, author, persistent, path
FROM users JOIN chrome_extensions USING (uid)
WHERE name != 'Chrome Media Router' and name != 'Chrome Web Store Payments' and name != 'Docs' and name != 'Gmail' and name != 'Google Docs Offline' and name != 'Google Drive' and name != 'Sheets' and name != 'Slides' and name != 'YouTube';