Fleet uses osquery tables to query operating system, hardware, and software data. Each table provides specific data for analysis and filtering.
chrome_extension_content_scripts
Chrome browser extension content scripts.
Column | Type | Description |
---|---|---|
browser_type | text | The browser type (Valid values: chrome, chromium, opera, yandex, brave) |
identifier | text | Extension identifier |
match | text | The pattern that the script is matched against |
path | text | Path to extension folder |
profile_path | text | The profile path |
referenced | bigint | 1 if this extension is referenced by the Preferences file of the profile |
script | text | The content script used by the extension |
uid | bigint | The local user that owns the extension |
version | text | Extension-supplied version |
SELECT * FROM users CROSS JOIN chrome_extension_content_scripts USING (uid);
Querying this table requires joining against the users
table. Learn more