Solutions
Device management
Remotely manage, and protect laptops and mobile devices.
Orchestration
Automate tasks across devices, from app installs to scripts.
Software management
Inventory, patch, and manage installed software.
Infrastructure as code
See every change, undo any error, repeat every success.
Extend Fleet
Integrate your favorite tools with Fleet.
More
Device management
Remotely manage, and protect laptops and mobile devices.
Orchestration
Automate tasks across devices, from app installs to scripts.
Software management
Inventory, patch, and manage installed software.
Infrastructure as code
See every change, undo any error, repeat every success.
Extend Fleet
Integrate your favorite tools with Fleet.
Fleet uses osquery tables to query operating system, hardware, and software data. Each table provides specific data for analysis and filtering.
Apple
Linux
Windows
ChromeOS
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