1{
2  "extensions": [
3    {
4      "type": "view",
5      "location": "sources.sidebar-bottom",
6      "id": "sources.eventListenerBreakpoints",
7      "title": "Event Listener Breakpoints",
8      "order": 9,
9      "persistence": "permanent",
10      "className": "BrowserDebugger.EventListenerBreakpointsSidebarPane"
11    },
12    {
13      "type": "@UI.ContextFlavorListener",
14      "contextTypes": [
15        "SDK.DebuggerPausedDetails"
16      ],
17      "className": "BrowserDebugger.XHRBreakpointsSidebarPane"
18    },
19    {
20      "type": "view",
21      "location": "sources.sidebar-bottom",
22      "id": "sources.xhrBreakpoints",
23      "title": "XHR/fetch Breakpoints",
24      "order": 5,
25      "hasToolbar": true,
26      "persistence": "permanent",
27      "className": "BrowserDebugger.XHRBreakpointsSidebarPane"
28    },
29    {
30      "type": "view",
31      "location": "sources.sidebar-bottom",
32      "id": "sources.domBreakpoints",
33      "title": "DOM Breakpoints",
34      "order": 7,
35      "persistence": "permanent",
36      "className": "BrowserDebugger.DOMBreakpointsSidebarPane"
37    },
38    {
39      "type": "view",
40      "location": "elements-sidebar",
41      "id": "elements.domBreakpoints",
42      "title": "DOM Breakpoints",
43      "order": 6,
44      "persistence": "permanent",
45      "className": "BrowserDebugger.DOMBreakpointsSidebarPane"
46    },
47    {
48      "type": "@Elements.MarkerDecorator",
49      "factoryName": "Elements.GenericDecorator",
50      "marker": "breakpoint-marker",
51      "title": "DOM Breakpoint",
52      "color": "rgb(105, 140, 254)"
53    },
54    {
55      "type": "@UI.ContextMenu.Provider",
56      "contextTypes": [
57        "SDK.DOMNode"
58      ],
59      "className": "BrowserDebugger.DOMBreakpointsSidebarPane.ContextMenuProvider"
60    },
61    {
62      "type": "@UI.ContextFlavorListener",
63      "contextTypes": [
64        "SDK.DebuggerPausedDetails"
65      ],
66      "className": "BrowserDebugger.DOMBreakpointsSidebarPane"
67    },
68    {
69      "type": "view",
70      "location": "sources.sidebar-bottom",
71      "id": "sources.globalListeners",
72      "title": "Global Listeners",
73      "order": 8,
74      "hasToolbar": true,
75      "persistence": "permanent",
76      "className": "BrowserDebugger.ObjectEventListenersSidebarPane"
77    },
78    {
79      "type": "view",
80      "location": "navigator-view",
81      "id": "navigator-network",
82      "title": "Page",
83      "order": 2,
84      "persistence": "permanent",
85      "className": "Sources.NetworkNavigatorView"
86    },
87    {
88      "type": "view",
89      "location": "navigator-view",
90      "id": "navigator-overrides",
91      "title": "Overrides",
92      "order": 4,
93      "persistence": "permanent",
94      "className": "Sources.OverridesNavigatorView"
95    },
96    {
97      "type": "view",
98      "location": "navigator-view",
99      "id": "navigator-contentScripts",
100      "title": "Content scripts",
101      "order": 5,
102      "persistence": "permanent",
103      "className": "Sources.ContentScriptsNavigatorView"
104    },
105    {
106      "type": "@Sources.NavigatorView",
107      "viewId": "navigator-overrides",
108      "className": "Sources.OverridesNavigatorView"
109    },
110    {
111      "type": "@Sources.NavigatorView",
112      "viewId": "navigator-contentScripts",
113      "className": "Sources.ContentScriptsNavigatorView"
114    }
115  ],
116  "dependencies": [
117    "elements",
118    "sources",
119    "console"
120  ],
121  "modules": [
122    "browser_debugger-legacy.js"
123  ],
124  "skip_compilation": [
125    "browser_debugger-legacy.js"
126  ],
127  "resources": [
128    "domBreakpointsSidebarPane.css",
129    "eventListenerBreakpoints.css",
130    "xhrBreakpointsSidebarPane.css"
131  ]
132}
133