1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
[
{
"namespace": "events",
"types": [
{
"id": "ExtensionInstall",
"type": "object",
"description": "The event to describe the installation of an extension in Chrome.",
"properties": {
"eventType": {"type": "integer", "description": "The type of the event."},
"time": {"type": "number", "description": "The time at which the event was recorded."},
"extensionId": {"type": "string", "description": "The extension's id."},
"extensionName": {"type": "string", "description": "The extension's name."},
"extensionUrl": {"type": "string", "description": "The extension's url."},
"extensionLocation": {"type": "integer", "description": "The extension's install location."},
"extensionVersion": {"type": "string", "description": "The string reprepresentation of the extension's version."},
"extensionDescription": {"type": "string", "description": "The extension's description."}
}
},
{
"id": "ExtensionUnload",
"type": "object",
"description": "The event to describe the unloading of an extension in Chrome.",
"properties": {
"eventType": {"type": "integer", "description": "The type of the event."},
"time": {"type": "number", "description": "The time at which the event was recorded."},
"extensionId": {"type": "string", "description": "The extension's id."},
"extensionName": {"type": "string", "description": "The extension's name."},
"extensionUrl": {"type": "string", "description": "The extension's url."},
"extensionLocation": {"type": "integer", "description": "The extension's install location."},
"extensionVersion": {"type": "string", "description": "The string reprepresentation of the extension's version."},
"extensionDescription": {"type": "string", "description": "The extension's description."},
"unloadReason": {"type": "integer", "description": "The type of unload performed."}
}
},
{
"id": "ExtensionUninstall",
"type": "object",
"description": "The event to describe the uninstallation of an extension in Chrome.",
"properties": {
"eventType": {"type": "integer", "description": "The type of the event."},
"time": {"type": "number", "description": "The time at which the event was recorded."},
"extensionId": {"type": "string", "description": "The extension's id."},
"extensionName": {"type": "string", "description": "The extension's name."},
"extensionUrl": {"type": "string", "description": "The extension's url."},
"extensionLocation": {"type": "integer", "description": "The extension's install location."},
"extensionVersion": {"type": "string", "description": "The string reprepresentation of the extension's version."},
"extensionDescription": {"type": "string", "description": "The extension's description."}
}
},
{
"id": "ExtensionEnable",
"type": "object",
"description": "The event to describe the uninstallation of an extension in Chrome.",
"properties": {
"eventType": {"type": "integer", "description": "The type of the event."},
"time": {"type": "number", "description": "The time at which the event was recorded."},
"extensionId": {"type": "string", "description": "The extension's id."},
"extensionName": {"type": "string", "description": "The extension's name."},
"extensionUrl": {"type": "string", "description": "The extension's url."},
"extensionLocation": {"type": "integer", "description": "The extension's install location."},
"extensionVersion": {"type": "string", "description": "The string reprepresentation of the extension's version."},
"extensionDescription": {"type": "string", "description": "The extension's description."}
}
},
{
"id": "ExtensionUpdate",
"type": "object",
"description": "The event to describe the uninstallation of an extension in Chrome.",
"properties": {
"eventType": {"type": "integer", "description": "The type of the event."},
"time": {"type": "number", "description": "The time at which the event was recorded."},
"extensionId": {"type": "string", "description": "The extension's id."},
"extensionName": {"type": "string", "description": "The extension's name."},
"extensionUrl": {"type": "string", "description": "The extension's url."},
"extensionLocation": {"type": "integer", "description": "The extension's install location."},
"extensionVersion": {"type": "string", "description": "The string reprepresentation of the extension's version."},
"extensionDescription": {"type": "string", "description": "The extension's description."}
}
},
{
"id": "ChromeUpdate",
"type": "object",
"description": "The event to describe an update to Chrome; this will be recognized on startup by a change in the version number.",
"properties": {
"eventType": {"type": "integer", "description": "The type of the event."},
"time": {"type": "number", "description": "The time at which the event was recorded."},
"previousVersion": {"type": "string", "description": "The string representation of the previous Chrome version."},
"currentVersion": {"type": "string", "description": "The string representation of the current Chrome version."}
}
},
{
"id": "RendererCrash",
"type": "object",
"description": "The event to represent a renderer crash.",
"properties": {
"eventType": {"type": "integer", "description": "The type of the event."},
"time": {"type": "number", "description": "The time at which the event was recorded."}
}
},
{
"id": "RendererFreeze",
"type": "object",
"description": "The event to represent a frozen renderer (when the frozen tab popup comes up).",
"properties": {
"eventType": {"type": "integer", "description": "The type of the event."},
"time": {"type": "number", "description": "The time at which the event was recorded."},
"url": {"type": "string", "description": "The crash url."}
}
},
{
"id": "UncleanExit",
"type": "object",
"description": "The event to represent an unclean exit.",
"properties": {
"eventType": {"type": "integer", "description": "The type of the event."},
"time": {"type": "number", "description": "The time at which the event was recorded."},
"profileName": {"type": "string", "description": "The name of the profile which shutdown uncleanly."}
}
}
]
}
]
|