You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The **More tools** () button on the **Activity bar** lists additional, optional tools that can be added to the **Activity bar**.
57
+
The **More tools** () button on the **Activity Bar** lists additional, optional tools that can be added to the **Activity Bar**.
58
58
59
59
There's also a **More tools** () button on the **Quick View** toolbar at the bottom of DevTools. To show or hide the **Quick View** panel, press **Esc**; or click **Customize and control DevTools** (**...**) in the upper right, and then click **Toggle Quick View panel**.
The **Changes** tool tracks any changes that you've made to CSS or JavaScript in DevTools. It shows you what changes to make to your actual source files after you've successfully used DevTools to modify a copy of your webpage files that are sent from the server:
14
+
The **Changes** tool tracks any changes that you've made to CSS, JavaScript, or HTML files in DevTools. The **Changes** tool is empty until you open files and edit them by using the **Sources** tool, **Quick source** tool, or **Elements** tool's **Styles** pane.
15
+
16
+
The **Changes** tool shows you what changes to make to your actual source files after you've successfully used DevTools to modify a copy of your webpage files that are sent from the server:
14
17
15
18

16
19
@@ -24,7 +27,7 @@ On the **Activity Bar** or **Quick View** toolbar, click the **More tools** (
26
29
27
-
The **Changes** tool opens in the **Activity Bar** or in the **Quick View**, depending on which toolbar you used.
30
+
The **Changes** tool opens in the **Activity Bar** or in the **Quick View** panel, depending on which toolbar you used.
To undo all changes, at the bottom of the **Changes** tool, click the **Revert all changes to current file** () button:
77
80
@@ -86,3 +89,23 @@ When you've made a change to a minified file, the **Changes** tool enables you t
86
89

87
90
88
91
To scroll horizontally, click the horizontal scrollbar, or press the left or right arrow keys.
Copy file name to clipboardExpand all lines: microsoft-edge/devtools-guide-chromium/crash-analyzer/index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -143,7 +143,7 @@ DevTools doesn't cache source maps when the domain name is `localhost`. This me
143
143
<!-- ------------------------------ -->
144
144
#### Open the Crash analyzer tool
145
145
146
-
The **Crash analyzer** tool is a Quick View tool; by default, it opens in the **Quick View** panel, so that you can use it alongside the other tools that are open in the **Activity bar**.
146
+
The **Crash analyzer** tool is a Quick View tool; by default, it opens in the **Quick View** panel, so that you can use it alongside the other tools that are open in the **Activity Bar**.
147
147
148
148
149
149
<!-- ---------- -->
@@ -177,7 +177,7 @@ If you want to test the **Crash analyzer** tool but you don't have a stack trace
177
177
178
178
1. To open DevTools, right-click the webpage, and then select **Inspect**. Or, press **Ctrl+Shift+I** (Windows, Linux) or **Command+Option+I** (macOS). DevTools opens.
179
179
180
-
1. In DevTools, on the **Activity bar**, click **Console** (). The **Console** tool opens.
180
+
1. In DevTools, on the **Activity Bar**, click **Console** (). The **Console** tool opens.
181
181
182
182
1. Select the error stack trace that's displayed in the **Console** tool and copy it.
Copy file name to clipboardExpand all lines: microsoft-edge/devtools-guide-chromium/elements-tool/elements-tool.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,3 +26,4 @@ Debug your HTML using the DOM tree, and inspect and work on the CSS for your web
26
26
*[Edit CSS font styles and settings in the Styles pane](../inspect-styles/edit-fonts.md)
27
27
*[Style editing for CSS-in-JS frameworks](../css/css-in-js.md)
28
28
*[Get started viewing and changing the DOM](../dom/index.md)
29
+
*[Your first website](https://developer.mozilla.org/docs/Learn/Getting_started_with_the_web) (MDN) - How to use HTML, CSS, and JavaScript to build a web page.
Copy file name to clipboardExpand all lines: microsoft-edge/devtools-guide-chromium/javascript/guides/mark-content-scripts-library-code.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,11 @@ ms.date: 05/04/2021
23
23
limitations under the License. -->
24
24
# Add content scripts to the Ignore List
25
25
26
+
<!-- todo: define _content script_
27
+
* [Using the Content scripts tab for Microsoft Edge extensions](../../sources/index.md#using-the-content-scripts-tab-for-microsoft-edge-extensions) in _Sources tool overview_.
28
+
* [Content scripts](https://developer.chrome.com/docs/extensions/develop/concepts/content-scripts) in Chrome Extensions docs.
29
+
-->
30
+
26
31
When you use the **Sources** tool to step through code, sometimes you pause on code that you don't recognize and don't want to step through, such as code for a Microsoft Edge extension that's installed.
27
32
28
33
To avoid pausing on extension code:
@@ -40,6 +45,7 @@ To avoid pausing on extension code:
40
45
## See also
41
46
42
47
*[Step 4: Step through the code](../index.md#step-4-step-through-the-code) in _Get started debugging JavaScript_
48
+
*[Content scripts](https://developer.chrome.com/docs/extensions/develop/concepts/content-scripts) in Chrome Extensions docs.
Sometimes you need to try out some possible fixes for a webpage, but you don't have access to the source files, or changing the page requires a slow and complex build process. You can debug and fix all kind of problems in DevTools. But the changes don't persist; after you refresh the local file, all your work is gone. The Overrides feature in the [Sources](../sources/index.md) tool helps you solve this problem.
14
15
15
-
You can now take a resource of the current webpage and store it locally. When you refresh the webpage, the browser doesn't load the resource from the server; instead, the browser replaces the server resource with your local copy of the resource.
16
+
You can take a resource of the current webpage and store it locally. When you refresh the webpage, the browser doesn't load the resource from the server; instead, the browser replaces the server resource with your local copy of the resource. The overrides that you create are saved across reloads.
17
+
18
+
The overrides feature is not intended for mapping to your source files.
19
+
20
+
When you set up a folder for local overrides the first time, that folder should be empty. DevTools then creates all of the folders and sub-folders that it needs to store overrides within it.
*[Use a development environment](./sources/index.md)<!--keep link?-->
634
+
*[Sync changes in DevTools with the file system](./workspaces/index.md)<!--keep link?-->
635
+
*[Override files from the web](./javascript/overrides.md)<!--keep link?-->
636
+
*[Your first website](https://developer.mozilla.org/docs/Learn/Getting_started_with_the_web) (MDN) - How to use HTML, CSS, and JavaScript to build a web page.
Copy file name to clipboardExpand all lines: microsoft-edge/devtools-guide-chromium/performance/reference.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,7 +99,7 @@ The images in this page show DevTools undocked into its own, dedicated window. T
99
99
<!-- upstream doesn't have this section, has section in Overview article https://developer.chrome.com/docs/devtools/performance/overview#open_the_performance_panel -->
100
100
101
101
<!-- in each section, instead of linking away to this detailed Open h2 or Overview article's Open h2, start w/ inline step:
102
-
1. Right-click a webpage, select **Inspect**, and then in DevTools, click the **Performance** tab in the **Activity bar**.
102
+
1. Right-click a webpage, select **Inspect**, and then in DevTools, click the **Performance** tab in the **Activity Bar**.
103
103
-->
104
104
105
105
To use the sections in this page, open the **Performance** tool in DevTools:
0 commit comments