firefox_addons¶
Firefox browser extensions, webapps, and addons.
Platform support¶
Please be aware that some queries can only be run against certain platforms. Below is a list of the supported platforms that this query supports. Zercurity will automatically pause queries from running if errors are detected. Running a query against an unsupported platform will result in the following error: no such table: firefox_addons
Linux
Mac OSX
Table schema¶
Name |
Type |
Description |
---|---|---|
uid |
BIGINT |
The local user that owns the addon |
name |
TEXT |
Addon display name |
identifier |
TEXT |
Addon identifier |
creator |
TEXT |
Addon-supported creator string |
type |
TEXT |
Extension, addon, webapp |
version |
TEXT |
Addon-supplied version string |
description |
TEXT |
Addon-supplied description string |
source_url |
TEXT |
URL that installed the addon |
visible |
INTEGER |
1 If the addon is shown in browser else 0 |
active |
INTEGER |
1 If the addon is active else 0 |
disabled |
INTEGER |
1 If the addon is application-disabled else 0 |
autoupdate |
INTEGER |
1 If the addon applies background updates else 0 |
native |
INTEGER |
1 If the addon includes binary components else 0 |
location |
TEXT |
Global, profile location |
path |
TEXT |
Path to plugin bundle |
Query examples¶
select * from users join firefox_addons using (uid)