mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 01:55:20 +00:00
c2be670806
1. Table implementations (spec files) can mark the table as 'cachable'. 2. Cached results depend on the shortest/quickest interval of scheduled queries that act on results of the table. 3. The table API generator blocks caching on index/additional/required table column options.
17 lines
733 B
Plaintext
17 lines
733 B
Plaintext
table_name("chrome_extensions")
|
|
description("Chrome browser extensions.")
|
|
schema([
|
|
Column("name", TEXT, "Extension display name"),
|
|
Column("identifier", TEXT, "Extension identifier"),
|
|
Column("version", TEXT, "Extension-supplied version"),
|
|
Column("description", TEXT, "Extension-optional description"),
|
|
Column("locale", TEXT, "Default locale supported by extension"),
|
|
Column("update_url", TEXT, "Extension-supplied update URI"),
|
|
Column("author", TEXT, "Optional extension author"),
|
|
Column("persistent", INTEGER,
|
|
"1 If extension is persistent across all tabs else 0"),
|
|
Column("path", TEXT, "Path to extension folder"),
|
|
])
|
|
attributes(cachable=True)
|
|
implementation("applications/browser_chrome@genChromeExtensions")
|