-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathInspector.json
34 lines (34 loc) · 977 Bytes
/
Inspector.json
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
{
"domain": "Inspector",
"debuggableTypes": ["itml", "javascript", "page", "web-page"],
"targetTypes": ["itml", "javascript", "page"],
"commands": [
{
"name": "enable",
"description": "Enables inspector domain notifications."
},
{
"name": "disable",
"description": "Disables inspector domain notifications."
},
{
"name": "initialized",
"description": "Sent by the frontend after all initialization messages have been sent."
}
],
"events": [
{
"name": "evaluateForTestInFrontend",
"parameters": [
{ "name": "script", "type": "string" }
]
},
{
"name": "inspect",
"parameters": [
{ "name": "object", "$ref": "Runtime.RemoteObject" },
{ "name": "hints", "type": "object" }
]
}
]
}