OfficeDev / vscode-debugger-extension-for-office-addins

VS Code extension to allow for debugging Office Add-ins in VS Code
18 stars 7 forks source link

I would like to be able to use "urlFilter" in my launch.json entries. #17

Open AltitudeApps opened 3 years ago

AltitudeApps commented 3 years ago

I'd like to be able to do this in my launch.json :

      //  this doesn't work...
      // "urlFilter":
      //   "https://localhost:3000/*.html?_host_Info=Excel$Win32$16.01$en-US$$$$0",
      //                         ^^^^^   omg, i can haz wildcard, plz?  
      //                         along with param string containing special chars?

I posted a comment on vscode-chrome-debug, mentioning that I suspect that the root cause has to do with vscode-chrome-debug-core . I thought I'd mention it here, so that this project would be aware of how I was trying to use this extension.

https://github.com/microsoft/vscode-chrome-debug/issues/973#issuecomment-678708260

TCourtneyOwen commented 3 years ago

We recently checked in a change to the extension that makes the url requirement less restrictive, so it doesn't have to match the url exactly that you specify. Rather it just looks to see if the available webview instances match with "https://localhost" and if it can find one, it will attach to it. You may want to try the latest version of the extension if you haven't already.

Thanks,

Courtney