Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't find the "Override requests with workspace project" in Chrome DevTools Canary

For the life of me I can't find where to enable this setting: Override requests with workspace project in Chrome Canary v64.0.3

Where do you enable this feature?

I learned about this feature from here: https://umaar.com/dev-tips/162-network-overrides/

like image 944
Patoshi パトシ Avatar asked Oct 24 '17 14:10

Patoshi パトシ


People also ask

How do I enable Chrome override?

To use Overrides, open the Devtools either from the settings or using the keyboard shortcut CTRL+SHIFT+I . Then, Click on the Sources tab. You'll see at the top of the left menu 3 tabs: Page, Filesystem, and Overrides. Click on Overrides.


2 Answers

Currently with 65 Chrome Canary it's not experimental anymore.

But you still cannot "Save for overrides" XHR requests.

This restriction is only in UI. To get XHR request override:

  1. Open "Sources tab" in Chrome Canary DevTools and "Overrides" sub-tab under it.
  2. Check "Enable Local Overrides" and add a folder to store changes in the filesystem.
  3. Open "Network" tab in Chrome Canary DevTools and select XHR request
  4. Press "Open in new tab"
  5. Go to new opened tab Chrome DevTools - "Network"
  6. Select the first request in the list and "Save for Overrides" button appears.

You can follow the gif from question starting step 5:

gif from question

like image 163
Eugene Gavrilov Avatar answered Sep 28 '22 08:09

Eugene Gavrilov


It's behind an experiment (https://developers.google.com/web/tools/chrome-devtools/ui#experiments) then it'll be under experiments in the settings panel of devtools.

Please do be warned though, this is an experimental feature, there are bugs and it might not work as intended.

We are trying hard to get it fully released soon (on Canary) but it needs to be a 1st class feature before we will feel ready to release it.

like image 24
allada Avatar answered Sep 28 '22 07:09

allada