2015-03-09 05:21:58 +00:00
|
|
|
table_name("chrome_extensions")
|
|
|
|
description("Chrome browser extensions.")
|
|
|
|
schema([
|
2016-09-14 03:37:31 +00:00
|
|
|
Column("uid", BIGINT, "The local user that owns the extension",
|
|
|
|
additional=True),
|
|
|
|
Column("name", TEXT, "Extension display name"),
|
2017-04-13 04:48:28 +00:00
|
|
|
Column("identifier", TEXT, "Extension identifier", index=True),
|
2016-09-14 03:37:31 +00:00
|
|
|
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"),
|
|
|
|
ForeignKey(column="uid", table="users"),
|
2015-03-09 05:21:58 +00:00
|
|
|
])
|
2015-11-24 20:29:03 +00:00
|
|
|
attributes(user_data=True)
|
2015-03-09 05:21:58 +00:00
|
|
|
implementation("applications/browser_chrome@genChromeExtensions")
|
2017-10-06 15:45:49 +00:00
|
|
|
examples([
|
|
|
|
"select * from users join chrome_extensions using (uid)",
|
|
|
|
])
|
2016-09-14 03:37:31 +00:00
|
|
|
fuzz_paths([
|
|
|
|
"/Library/Application Support/Google/Chrome/",
|
|
|
|
"/Users",
|
|
|
|
])
|