microsoft-edge

Visual Studio integrated Javascript debugging with Windows 10 Edge

安稳与你 提交于 2019-11-30 00:26:11
Is there any way to enable Visual Studio integrated Javascript debugger with Windows 10 Edge? I mean the feature for stepping through the code, set breakpoints, etc. from inside the Visual Studio IDE. I am using Visual Studio 2012 and 2013, perhaps this can be achieved with 2015? TLDR; Once it is running in Edge, use Debug > Attach to Process from Visual Studio Community 2015. Attach to: Script code Available Processes: MicrosoftEdgeCP.exe Steps Optional: Set Edge as your default browser. Open your project in Visual Studio. Add breakpoints in your JavaScript. In the Solution Explorer, select

How to publish Edge extensions on the Windows Store?

可紊 提交于 2019-11-29 21:34:27
Since the Windows 10 Anniversary Update I started developing extensions for Edge. I'd like to publish some of them on the Windows Store however I don't know how. I'm currently sideloading the extension. How do you package it and submit it? Haibara Ai Updated (2017-07-11): Microsoft rolled out the next stage: It is now possible to submit an extension for review . Updated (2016-12-19): Microsoft Edge has published the packaging documentation , and also mentioned the following: Submitting a Microsoft Edge extension to the Windows Store is currently a restricted capability. Reach out to us with

Remove Microsoft Edge's phone number styling

≡放荡痞女 提交于 2019-11-29 20:47:55
I noticed that the new Microsoft Edge browser overrides my styles when it detects phone numbers: <span class="phone">(123)123-1234</span> See this jsfiddle (must be opened using Microsoft Edge :P). This sort of intrudes upon the design of the website, and is rather obnoxious. Sure seems like a trait of a successor to IE :/ How can I override or disable this so my website users will not see it? scunliffe You can get rid of it by adding this meta tag in the header of your pages. <meta name="format-detection" content="telephone=no"> Microsoft's documentation on this tag . Hopefully there will be

check whether browser is chrome or edge

可紊 提交于 2019-11-29 17:24:38
问题 My current website runs only in Chrome browser, to do this I have checked in following way if (Request.Browser.Browser == "Chrome") { // Allow } But for Edge as well it is returning as "Chrome" only. How can I allow access from only Chrome browser? 回答1: You can check user-agent and see whether it is Microsoft Edge or not because Microsoft Edge contains Edge/version in it's user-agent string. //get user agent somehow here based on what you are working on userAgent = Request.UserAgent; if

Reading out Edge Browser Title & Url with System.Windows.Automation

我是研究僧i 提交于 2019-11-29 15:33:34
I'm trying to read out the TITLE & URL from the Microsoft EDGE Browser. Doing this with System.Windows.Automation most preferably since the code base already uses this for other problems. Is it possible with System.Windows.Automation? How to access the URL? I'm currently this far: AutomationId "TitleBar" ClassName "ApplicationFrameWindow" Name = [string] => Reading out this element gives me the TITLE => Walking it's children, I find the item "addressEditBox": AutomationId "addressEditBox" ClassName "RichEditBox" Name "Search or enter web address" => I always get back the string "Search or

Disabled button is clickable on Edge browser

最后都变了- 提交于 2019-11-29 14:08:17
I have problem with Edge browser. In my web site I have buttons with span tags inside them. In this span tags I bind text and icons. So far I had no problem but on Edge browser it is possible to click on disabled buttons. After investigating problem I found out that, when button contains span tags inside, it is possible to click on button. Here is how it looks on my web site: <button id="btnRefresh" type="button" class="btn btn-primary" ng-click="refresh()" ng-disabled="performingAction"> <span ng-class="performingAction && action == 'refresh' ? 'fa fa-cog fa-spin' :'fa fa-refresh'"></span>

WebSocket to localhost not working on Microsoft Edge

我怕爱的太早我们不能终老 提交于 2019-11-29 14:00:03
问题 I've created a simple WebSocket server and am trying to connect to it with the following code: function test(name) { var ws = new WebSocket('ws://localhost:1234'); ws.onopen = function () { ws.send('Hello from ' + name); } } test('Edge'); This works fine from Chrome and IE11 on Windows10 but when I try from Edge, the onopen function isn't called, instead I eventually get the following error: SCRIPT12029: WebSocket Error: Network Error 12029, A connection with the server could not be

Will Microsoft Edge and Windows 10 support HTA?

久未见 提交于 2019-11-29 13:30:15
I'm working on an HTML Application for Windows 8.1, and, as our office soon will use Windows 10, I'm wondering if MS Edge and Windows 10 still support HTA. No. However, you can still run legacy HTAs in IE9 mode. For new development using web technologies, Microsoft is recommending a switch to Windows Store Apps. Here's what Microsoft had to say about HTA support in IE10 and later: The Internet Explorer team is increasingly focused on standards compliance, and markup-based behaviors are not part of modern web standards. In IE10 mode support for markup based behaviors has been removed, and this

How to pin/unpin Microsoft Edge developer tools in Windows 10

≡放荡痞女 提交于 2019-11-29 11:32:56
问题 I have upgraded to Windows 10; had a great experience on installation process. But very strange thing is I am not finding a way to pin (ctrl+9 for IE) the Developer Tools to an existing window with the MS Edge browser app. Is it missing? 回答1: Correct, pinning/unpinning the F12 developers is not available in current builds of Microsoft Edge (10240). This is a known issue and we are planning to bring it back in a future update. 回答2: In my laptop , the Microsoft Edge has it pinned. And the icon

Displaying Blob PDF in Edge/IE11

北城以北 提交于 2019-11-29 10:00:32
I have a django app (from which I get some html as a client), and a base64-encoded PDF which needs to be displayed. I've tried multiple approaches, which work as expected in Chrome/Firefox. I'm working with django, so there will be some templates and some JavaScript. pdf_preview_embed is a div Embed DataURL <embed width=100% height=100% type="application/pdf" src="data:application/pdf;base64, {{ pdf }}"></embed> Unacceptable solution, because it may require inlining megs of data. Works in IE11 under Windows 7, doesn't work on Edge and IE11 under Windows 10. Embed Blob base64binary