OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 [ | 5 [ |
6 { | 6 { |
7 "namespace": "devtools.panels", | 7 "namespace": "devtools.panels", |
| 8 "description": "Use the <code>chrome.devtools.panels</code> API to integrate
your extension into Developer Tools window UI: create your own panels, access e
xisting panels, and add sidebars.", |
8 "nocompile": true, | 9 "nocompile": true, |
9 "types": [ | 10 "types": [ |
10 { | 11 { |
11 "id": "ElementsPanel", | 12 "id": "ElementsPanel", |
12 "type": "object", | 13 "type": "object", |
13 "description": "Represents the Elements panel.", | 14 "description": "Represents the Elements panel.", |
14 "events": [ | 15 "events": [ |
15 { | 16 { |
16 "name": "onSelectionChanged", | 17 "name": "onSelectionChanged", |
17 "description": "Fired when an object is selected in the panel." | 18 "description": "Fired when an object is selected in the panel." |
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 "$ref": "devtools.inspectedWindow.Resource", | 307 "$ref": "devtools.inspectedWindow.Resource", |
307 "description": "A $ref:devtools.inspectedWindow.Resource object
for the resource that was clicked." | 308 "description": "A $ref:devtools.inspectedWindow.Resource object
for the resource that was clicked." |
308 } | 309 } |
309 ] | 310 ] |
310 } | 311 } |
311 ] | 312 ] |
312 } | 313 } |
313 ] | 314 ] |
314 } | 315 } |
315 ] | 316 ] |
OLD | NEW |