cygprofile: increase timeouts to allow showing web contents
[chromium-blink-merge.git] / chrome / common / extensions / docs / templates / intros / debugger.html
blob4bc08e649580cbb3a641222d79c74e9c60281013
1 <h2 id="manifest">Notes</h2>
3 <p>
4 As of today, attaching to the tab by means of the debugger API
5 and using embedded Chrome DevTools with that tab are mutually exclusive.
6 If user invokes Chrome DevTools while extension is attached to the tab,
7 debugging session is terminated. Extension can re-establish it later.
8 </p>
10 <h2 id="manifest">Manifest</h2>
12 <p>
13 You must declare the "debugger" permission in your extension's manifest
14 to use this API.
15 </p>
17 <pre data-filename="manifest.json">
19 "name": "My extension",
20 ...
21 <b> "permissions": [
22 "debugger",
23 ]</b>,
24 ...
26 </pre>
29 <h2 id="examples">Examples</h2>
31 <p>
32 You can find samples of this API in
33 <a href="samples#search:debugger">Samples</a>.
34 </p>