microsoft-edge-extension

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

How to determine in which browser your extension background script is executing?

こ雲淡風輕ζ 提交于 2019-11-29 08:24:48
I'm talking about Chrome extensions, Firefox WebExtensions, Edge extensions... In a background script, not a content script, is there a clear way to know which browser I am using? I need to do different operations for different browsers. Yes, navigator.userAgent can be useful, but it's not very clear . Is there any extension API that can be used to do this? Something like, chrome.extension.browserType . (Of course, this one doesn't really exist..) Makyen There is no specific API to detect which browser is currently being used. One of the benefits of the major browsers moving to support a

How to determine in which browser your extension background script is executing?

╄→尐↘猪︶ㄣ 提交于 2019-11-28 01:50:24
问题 I'm talking about Chrome extensions, Firefox WebExtensions, Edge extensions... In a background script, not a content script, is there a clear way to know which browser I am using? I need to do different operations for different browsers. Yes, navigator.userAgent can be useful, but it's not very clear . Is there any extension API that can be used to do this? Something like, chrome.extension.browserType . (Of course, this one doesn't really exist..) 回答1: There is no specific API to detect which