OLD | NEW |
1 { | 1 { |
2 "version": { "major": "1", "minor": "1" }, | 2 "version": { "major": "1", "minor": "1" }, |
3 "domains": [{ | 3 "domains": [{ |
4 "domain": "Inspector", | 4 "domain": "Inspector", |
5 "hidden": true, | 5 "hidden": true, |
6 "types": [], | 6 "types": [], |
7 "commands": [ | 7 "commands": [ |
8 { | 8 { |
9 "name": "enable", | 9 "name": "enable", |
10 "description": "Enables inspector domain notifications." | 10 "description": "Enables inspector domain notifications." |
(...skipping 792 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
803 "type": "integer", | 803 "type": "integer", |
804 "description": "Id of an execution context." | 804 "description": "Id of an execution context." |
805 }, | 805 }, |
806 { | 806 { |
807 "id": "ExecutionContextDescription", | 807 "id": "ExecutionContextDescription", |
808 "type": "object", | 808 "type": "object", |
809 "description": "Description of an isolated world.", | 809 "description": "Description of an isolated world.", |
810 "properties": [ | 810 "properties": [ |
811 { "name": "id", "$ref": "ExecutionContextId", "description":
"Unique id of the execution context. It can be used to specify in which executi
on context script evaluation should be performed." }, | 811 { "name": "id", "$ref": "ExecutionContextId", "description":
"Unique id of the execution context. It can be used to specify in which executi
on context script evaluation should be performed." }, |
812 { "name": "isPageContext", "type": "boolean", "description":
"True if this is a context where inpspected web page scripts run. False if it i
s a content script isolated context.", "hidden": true }, | 812 { "name": "isPageContext", "type": "boolean", "description":
"True if this is a context where inpspected web page scripts run. False if it i
s a content script isolated context.", "hidden": true }, |
| 813 { "name": "origin", "type": "string", "description": "Execut
ion context origin.", "hidden": true}, |
813 { "name": "name", "type": "string", "description": "Human re
adable name describing given context.", "hidden": true}, | 814 { "name": "name", "type": "string", "description": "Human re
adable name describing given context.", "hidden": true}, |
814 { "name": "frameId", "$ref": "Page.FrameId", "description":
"Id of the owning frame." } | 815 { "name": "frameId", "$ref": "Page.FrameId", "description":
"Id of the owning frame." } |
815 ] | 816 ] |
816 } | 817 } |
817 | 818 |
818 ], | 819 ], |
819 "commands": [ | 820 "commands": [ |
820 { | 821 { |
821 "name": "evaluate", | 822 "name": "evaluate", |
822 "parameters": [ | 823 "parameters": [ |
(...skipping 3534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4357 { | 4358 { |
4358 "name": "dataAvailable", | 4359 "name": "dataAvailable", |
4359 "parameters": [ | 4360 "parameters": [ |
4360 {"name": "value", "type": "array", "items": { "$ref": "Power
Event" }, "description": "List of power events." } | 4361 {"name": "value", "type": "array", "items": { "$ref": "Power
Event" }, "description": "List of power events." } |
4361 ], | 4362 ], |
4362 "handlers": ["browser", "frontend"] | 4363 "handlers": ["browser", "frontend"] |
4363 } | 4364 } |
4364 ] | 4365 ] |
4365 }] | 4366 }] |
4366 } | 4367 } |
OLD | NEW |